use crate::{prelude::*, FontChooser};
use glib::translate::*;
#[cfg_attr(feature = "v4_10", deprecated = "Since 4.10")]
#[allow(deprecated)]
pub trait FontChooserExtManual: 'static {
#[doc(alias = "gtk_font_chooser_set_filter_func")]
#[doc(alias = "set_filter_func")]
fn unset_filter_func(&self);
}
impl<O: IsA<FontChooser>> FontChooserExtManual for O {
fn unset_filter_func(&self) {
unsafe {
ffi::gtk_font_chooser_set_filter_func(
self.as_ref().to_glib_none().0,
None,
std::ptr::null_mut(),
None,
)
}
}
}