We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Part of #199 ListBox: row-selected Widget: hierarchy-changed, parent-set
For closure Fn(&ListBox, Option<&ListBoxRow>) + 'static> generated generated bad code. Not sure if it need be fixed in gir or in glib\gtk.
Fn(&ListBox, Option<&ListBoxRow>) + 'static>
gir
glib\gtk
unsafe extern "C" fn row_selected_trampoline(this: *mut GtkListBox, row: *mut GtkListBoxRow, f: gpointer) { callback_guard!(); let f: &Box_<Fn(&ListBox, Option<&ListBoxRow>) + 'static> = transmute(f); f(&from_glib_none(this), Option<ListBoxRow>::from_glib_none(row)) }
The text was updated successfully, but these errors were encountered:
Added partial fix
Sorry, something went wrong.
Seems gir generated working code, I close this.
No branches or pull requests
Part of #199
ListBox: row-selected
Widget: hierarchy-changed, parent-set
For closure
Fn(&ListBox, Option<&ListBoxRow>) + 'static>
generated generated bad code.Not sure if it need be fixed in
gir
or inglib\gtk
.The text was updated successfully, but these errors were encountered: