Skip to content

Commit 25fee3a

Browse files
Regenerate with latest gir
1 parent 831729b commit 25fee3a

File tree

121 files changed

+121
-667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+121
-667
lines changed

gdk-pixbuf/src/auto/pixbuf_animation.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,7 @@ impl PixbufAnimation {
137137
}
138138
}
139139

140-
mod sealed {
141-
pub trait Sealed {}
142-
impl<T: super::IsA<super::PixbufAnimation>> Sealed for T {}
143-
}
144-
145-
pub trait PixbufAnimationExt: IsA<PixbufAnimation> + sealed::Sealed + 'static {
140+
pub trait PixbufAnimationExt: IsA<PixbufAnimation> + 'static {
146141
#[doc(alias = "gdk_pixbuf_animation_get_height")]
147142
#[doc(alias = "get_height")]
148143
fn height(&self) -> i32 {

gdk-pixbuf/src/auto/pixbuf_loader.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,7 @@ impl Default for PixbufLoader {
6363
}
6464
}
6565

66-
mod sealed {
67-
pub trait Sealed {}
68-
impl<T: super::IsA<super::PixbufLoader>> Sealed for T {}
69-
}
70-
71-
pub trait PixbufLoaderExt: IsA<PixbufLoader> + sealed::Sealed + 'static {
66+
pub trait PixbufLoaderExt: IsA<PixbufLoader> + 'static {
7267
#[doc(alias = "gdk_pixbuf_loader_close")]
7368
fn close(&self) -> Result<(), glib::Error> {
7469
unsafe {

gdk-pixbuf/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ a11b11f2e403)
1+
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70)

gdk-pixbuf/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Generated by gir (https://github.com/gtk-rs/gir @ a11b11f2e403)
1+
Generated by gir (https://github.com/gtk-rs/gir @ eff839d4745d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 4d1189172a70)

gio/src/auto/action.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,7 @@ impl Action {
6464
}
6565
}
6666

67-
mod sealed {
68-
pub trait Sealed {}
69-
impl<T: super::IsA<super::Action>> Sealed for T {}
70-
}
71-
72-
pub trait ActionExt: IsA<Action> + sealed::Sealed + 'static {
67+
pub trait ActionExt: IsA<Action> + 'static {
7368
#[doc(alias = "g_action_activate")]
7469
fn activate(&self, parameter: Option<&glib::Variant>) {
7570
unsafe {

gio/src/auto/action_group.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,7 @@ impl ActionGroup {
2323
pub const NONE: Option<&'static ActionGroup> = None;
2424
}
2525

26-
mod sealed {
27-
pub trait Sealed {}
28-
impl<T: super::IsA<super::ActionGroup>> Sealed for T {}
29-
}
30-
31-
pub trait ActionGroupExt: IsA<ActionGroup> + sealed::Sealed + 'static {
26+
pub trait ActionGroupExt: IsA<ActionGroup> + 'static {
3227
#[doc(alias = "g_action_group_action_added")]
3328
fn action_added(&self, action_name: &str) {
3429
unsafe {

gio/src/auto/action_map.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@ impl ActionMap {
1818
pub const NONE: Option<&'static ActionMap> = None;
1919
}
2020

21-
mod sealed {
22-
pub trait Sealed {}
23-
impl<T: super::IsA<super::ActionMap>> Sealed for T {}
24-
}
25-
26-
pub trait ActionMapExt: IsA<ActionMap> + sealed::Sealed + 'static {
21+
pub trait ActionMapExt: IsA<ActionMap> + 'static {
2722
#[doc(alias = "g_action_map_add_action")]
2823
fn add_action(&self, action: &impl IsA<Action>) {
2924
unsafe {

gio/src/auto/app_info.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -339,12 +339,7 @@ impl AppInfo {
339339
}
340340
}
341341

342-
mod sealed {
343-
pub trait Sealed {}
344-
impl<T: super::IsA<super::AppInfo>> Sealed for T {}
345-
}
346-
347-
pub trait AppInfoExt: IsA<AppInfo> + sealed::Sealed + 'static {
342+
pub trait AppInfoExt: IsA<AppInfo> + 'static {
348343
#[doc(alias = "g_app_info_add_supports_type")]
349344
fn add_supports_type(&self, content_type: &str) -> Result<(), glib::Error> {
350345
unsafe {

gio/src/auto/app_launch_context.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,7 @@ impl Default for AppLaunchContext {
3434
}
3535
}
3636

37-
mod sealed {
38-
pub trait Sealed {}
39-
impl<T: super::IsA<super::AppLaunchContext>> Sealed for T {}
40-
}
41-
42-
pub trait AppLaunchContextExt: IsA<AppLaunchContext> + sealed::Sealed + 'static {
37+
pub trait AppLaunchContextExt: IsA<AppLaunchContext> + 'static {
4338
#[doc(alias = "g_app_launch_context_get_display")]
4439
#[doc(alias = "get_display")]
4540
fn display(&self, info: &impl IsA<AppInfo>, files: &[File]) -> Option<glib::GString> {

gio/src/auto/application.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,7 @@ impl ApplicationBuilder {
128128
}
129129
}
130130

131-
mod sealed {
132-
pub trait Sealed {}
133-
impl<T: super::IsA<super::Application>> Sealed for T {}
134-
}
135-
136-
pub trait ApplicationExt: IsA<Application> + sealed::Sealed + 'static {
131+
pub trait ApplicationExt: IsA<Application> + 'static {
137132
#[doc(alias = "g_application_activate")]
138133
fn activate(&self) {
139134
unsafe {

0 commit comments

Comments
 (0)