gtk4/assistant.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::translate::*;
4
5use crate::Assistant;
6
7impl Assistant {
8 #[doc(alias = "gtk_assistant_set_forward_page_func")]
9 #[doc(alias = "set_forward_page_func")]
10 pub fn unset_forward_page_func(&self) {
11 unsafe {
12 crate::ffi::gtk_assistant_set_forward_page_func(
13 self.to_glib_none().0,
14 None,
15 std::ptr::null_mut(),
16 None,
17 );
18 }
19 }
20}