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

Commit d9b9bac

Browse files
committed
Regenerate gir
1 parent c4e91b7 commit d9b9bac

File tree

10 files changed

+16
-11
lines changed

10 files changed

+16
-11
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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

gtk/src/auto/clipboard.rs

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,12 @@ impl Clipboard {
126126
let format = from_glib_borrow(format);
127127
let text: Borrowed<Option<glib::GString>> = from_glib_borrow(text);
128128
let callback: Box_<P> = Box_::from_raw(data as *mut _);
129-
(*callback)(&clipboard, &format, text.as_ref().as_deref(), length);
129+
(*callback)(
130+
&clipboard,
131+
&format,
132+
(*text).as_ref().map(|s| s.as_str()),
133+
length,
134+
);
130135
}
131136
let callback = Some(callback_func::<P> as _);
132137
let super_callback0: Box_<P> = callback_data;
@@ -151,7 +156,7 @@ impl Clipboard {
151156
let clipboard = from_glib_borrow(clipboard);
152157
let text: Borrowed<Option<glib::GString>> = from_glib_borrow(text);
153158
let callback: Box_<P> = Box_::from_raw(data as *mut _);
154-
(*callback)(&clipboard, text.as_ref().as_deref());
159+
(*callback)(&clipboard, (*text).as_ref().map(|s| s.as_str()));
155160
}
156161
let callback = Some(callback_func::<P> as _);
157162
let super_callback0: Box_<P> = callback_data;

gtk/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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

gtk/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 @ e0d8d8d645b1)
1+
Generated by gir (https://github.com/gtk-rs/gir @ 64d7d6e1bd0d)
22
from gir-files (https://github.com/gtk-rs/gir-files @ 68003b4b40e5)

0 commit comments

Comments
 (0)