Skip to content

Commit 8e2f4d0

Browse files
sdroegebilelmoussaoui
authored andcommitted
Regenerate with latest gir-files
1 parent 5df93c7 commit 8e2f4d0

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

gdk-pixbuf/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

gdk-pixbuf/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

gio/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

gio/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

glib/gobject-sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

glib/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

glib/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

graphene/src/auto/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

graphene/sys/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Generated by gir (https://github.com/gtk-rs/gir @ 1b34ebba86cb)
2-
from gir-files (https://github.com/gtk-rs/gir-files @ c05f5cc23cb7)
2+
from gir-files (https://github.com/gtk-rs/gir-files @ dfdf5ed146d5)

pango/src/auto/font_map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ pub trait FontMapExt: IsA<FontMap> + 'static {
2222
#[cfg(feature = "v1_56")]
2323
#[cfg_attr(docsrs, doc(cfg(feature = "v1_56")))]
2424
#[doc(alias = "pango_font_map_add_font_file")]
25-
fn add_font_file(&self, filename: &str) -> Result<(), glib::Error> {
25+
fn add_font_file(&self, filename: impl AsRef<std::path::Path>) -> Result<(), glib::Error> {
2626
unsafe {
2727
let mut error = std::ptr::null_mut();
2828
let is_ok = ffi::pango_font_map_add_font_file(
2929
self.as_ref().to_glib_none().0,
30-
filename.to_glib_none().0,
30+
filename.as_ref().to_glib_none().0,
3131
&mut error,
3232
);
3333
debug_assert_eq!(is_ok == glib::ffi::GFALSE, !error.is_null());

0 commit comments

Comments
 (0)