Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions gio/Gir.toml
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,10 @@ status = "generate"
[[object.function]]
name = "dup_object"
rename = "get"
[[object.function]]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you should send this upstream instead

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whaaa you were so fast 😅

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Had to do that so often, it's part of muscle memory already 🤣

name = "get_info"
[object.function.return]
nullable = true

[[object]]
name = "Gio.DBusInterfaceInfo"
Expand Down
2 changes: 1 addition & 1 deletion gio/src/auto/dbus_interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub trait DBusInterfaceExt: IsA<DBusInterface> + 'static {

#[doc(alias = "g_dbus_interface_get_info")]
#[doc(alias = "get_info")]
fn info(&self) -> DBusInterfaceInfo {
fn info(&self) -> Option<DBusInterfaceInfo> {
unsafe {
from_glib_none(ffi::g_dbus_interface_get_info(
self.as_ref().to_glib_none().0,
Expand Down
Loading