Skip to content

Commit 137d33e

Browse files
Adapt to no longer re-exported auto functions
1 parent 065ad4c commit 137d33e

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

gdk4-x11/src/functions.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Take a look at the license at the top of the repository in the LICENSE file.
22

3+
pub use crate::auto::functions::*;
34
use crate::X11Display;
45
use glib::{translate::*, IntoGStr};
56

gdk4-x11/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ mod x11_monitor;
3030
mod x11_screen;
3131
mod x11_surface;
3232

33-
pub use auto::functions::*;
3433
pub use auto::*;
3534
pub use functions::*;
3635

gdk4/src/functions.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Take a look at the license at the top of the repository in the LICENSE file.
22

3+
pub use crate::auto::functions::*;
34
use crate::{prelude::*, ContentDeserializer, ContentSerializer};
45
use glib::translate::*;
56
use std::{future, pin::Pin, ptr};

gdk4/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ mod toplevel_size;
106106
mod touch_event;
107107
mod touchpad_event;
108108

109-
pub use self::auto::functions::*;
110109
pub use auto::*;
111110

112111
pub use functions::*;

gtk4/src/functions.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Take a look at the license at the top of the repository in the LICENSE file.
22

3+
pub use crate::auto::functions::*;
34
use crate::{prelude::*, AboutDialog, StyleProvider, Window};
45
use glib::{once_cell::sync::Lazy, translate::*, IntoGStr, Quark, Slice, ToValue};
56
use std::{boxed::Box as Box_, mem, pin::Pin, ptr};

gtk4/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ mod expression;
101101
pub mod builders;
102102
pub mod prelude;
103103

104-
pub use auto::functions::*;
105104
pub use auto::*;
106105
pub use rt::*;
107106

0 commit comments

Comments
 (0)