Skip to content
This repository was archived by the owner on Mar 4, 2024. It is now read-only.

Commit 3091725

Browse files
Regenerate with latest gir
1 parent e519f6a commit 3091725

22 files changed

+94
-106
lines changed

atk/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

atk/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

gdk/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

gdk/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

gdkx11/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

gdkx11/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 @ c659c2b21954)
1+
Generated by gir (https://github.com/gtk-rs/gir @ c88b69265102)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 744be9fbbbed)

gtk/src/auto/about_dialog.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -879,13 +879,13 @@ pub trait AboutDialogExt: IsA<AboutDialog> + sealed::Sealed + 'static {
879879
}
880880

881881
#[doc(alias = "activate-link")]
882-
fn connect_activate_link<F: Fn(&Self, &str) -> glib::signal::Inhibit + 'static>(
882+
fn connect_activate_link<F: Fn(&Self, &str) -> glib::ControlFlow + 'static>(
883883
&self,
884884
f: F,
885885
) -> SignalHandlerId {
886886
unsafe extern "C" fn activate_link_trampoline<
887887
P: IsA<AboutDialog>,
888-
F: Fn(&P, &str) -> glib::signal::Inhibit + 'static,
888+
F: Fn(&P, &str) -> glib::ControlFlow + 'static,
889889
>(
890890
this: *mut ffi::GtkAboutDialog,
891891
uri: *mut libc::c_char,

gtk/src/auto/entry_completion.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -431,14 +431,14 @@ pub trait EntryCompletionExt: IsA<EntryCompletion> + sealed::Sealed + 'static {
431431

432432
#[doc(alias = "cursor-on-match")]
433433
fn connect_cursor_on_match<
434-
F: Fn(&Self, &TreeModel, &TreeIter) -> glib::signal::Inhibit + 'static,
434+
F: Fn(&Self, &TreeModel, &TreeIter) -> glib::ControlFlow + 'static,
435435
>(
436436
&self,
437437
f: F,
438438
) -> SignalHandlerId {
439439
unsafe extern "C" fn cursor_on_match_trampoline<
440440
P: IsA<EntryCompletion>,
441-
F: Fn(&P, &TreeModel, &TreeIter) -> glib::signal::Inhibit + 'static,
441+
F: Fn(&P, &TreeModel, &TreeIter) -> glib::ControlFlow + 'static,
442442
>(
443443
this: *mut ffi::GtkEntryCompletion,
444444
model: *mut ffi::GtkTreeModel,
@@ -467,13 +467,13 @@ pub trait EntryCompletionExt: IsA<EntryCompletion> + sealed::Sealed + 'static {
467467
}
468468

469469
#[doc(alias = "insert-prefix")]
470-
fn connect_insert_prefix<F: Fn(&Self, &str) -> glib::signal::Inhibit + 'static>(
470+
fn connect_insert_prefix<F: Fn(&Self, &str) -> glib::ControlFlow + 'static>(
471471
&self,
472472
f: F,
473473
) -> SignalHandlerId {
474474
unsafe extern "C" fn insert_prefix_trampoline<
475475
P: IsA<EntryCompletion>,
476-
F: Fn(&P, &str) -> glib::signal::Inhibit + 'static,
476+
F: Fn(&P, &str) -> glib::ControlFlow + 'static,
477477
>(
478478
this: *mut ffi::GtkEntryCompletion,
479479
prefix: *mut libc::c_char,
@@ -501,14 +501,14 @@ pub trait EntryCompletionExt: IsA<EntryCompletion> + sealed::Sealed + 'static {
501501

502502
#[doc(alias = "match-selected")]
503503
fn connect_match_selected<
504-
F: Fn(&Self, &TreeModel, &TreeIter) -> glib::signal::Inhibit + 'static,
504+
F: Fn(&Self, &TreeModel, &TreeIter) -> glib::ControlFlow + 'static,
505505
>(
506506
&self,
507507
f: F,
508508
) -> SignalHandlerId {
509509
unsafe extern "C" fn match_selected_trampoline<
510510
P: IsA<EntryCompletion>,
511-
F: Fn(&P, &TreeModel, &TreeIter) -> glib::signal::Inhibit + 'static,
511+
F: Fn(&P, &TreeModel, &TreeIter) -> glib::ControlFlow + 'static,
512512
>(
513513
this: *mut ffi::GtkEntryCompletion,
514514
model: *mut ffi::GtkTreeModel,

gtk/src/auto/gl_area.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -480,13 +480,13 @@ pub trait GLAreaExt: IsA<GLArea> + sealed::Sealed + 'static {
480480
}
481481

482482
#[doc(alias = "render")]
483-
fn connect_render<F: Fn(&Self, &gdk::GLContext) -> glib::signal::Inhibit + 'static>(
483+
fn connect_render<F: Fn(&Self, &gdk::GLContext) -> glib::ControlFlow + 'static>(
484484
&self,
485485
f: F,
486486
) -> SignalHandlerId {
487487
unsafe extern "C" fn render_trampoline<
488488
P: IsA<GLArea>,
489-
F: Fn(&P, &gdk::GLContext) -> glib::signal::Inhibit + 'static,
489+
F: Fn(&P, &gdk::GLContext) -> glib::ControlFlow + 'static,
490490
>(
491491
this: *mut ffi::GtkGLArea,
492492
context: *mut gdk::ffi::GdkGLContext,

gtk/src/auto/label.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -841,13 +841,13 @@ pub trait LabelExt: IsA<Label> + sealed::Sealed + 'static {
841841
}
842842

843843
#[doc(alias = "activate-link")]
844-
fn connect_activate_link<F: Fn(&Self, &str) -> glib::signal::Inhibit + 'static>(
844+
fn connect_activate_link<F: Fn(&Self, &str) -> glib::ControlFlow + 'static>(
845845
&self,
846846
f: F,
847847
) -> SignalHandlerId {
848848
unsafe extern "C" fn activate_link_trampoline<
849849
P: IsA<Label>,
850-
F: Fn(&P, &str) -> glib::signal::Inhibit + 'static,
850+
F: Fn(&P, &str) -> glib::ControlFlow + 'static,
851851
>(
852852
this: *mut ffi::GtkLabel,
853853
uri: *mut libc::c_char,

0 commit comments

Comments
 (0)