mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-20 02:10:12 +00:00
Fix compilation warning: cast to GTK_WIDGET()
This commit is contained in:
parent
14724073a4
commit
2abf1056c9
@ -825,7 +825,7 @@ _gtk_menu_shell_update_mnemonics (GtkMenuShell *menu_shell)
|
|||||||
((target->active_menu_item && !found) ||
|
((target->active_menu_item && !found) ||
|
||||||
(target == menu_shell &&
|
(target == menu_shell &&
|
||||||
!target->parent_menu_shell &&
|
!target->parent_menu_shell &&
|
||||||
gtk_widget_has_grab (target)));
|
gtk_widget_has_grab (GTK_WIDGET (target))));
|
||||||
|
|
||||||
/* While menus are up, only show underlines inside the menubar,
|
/* While menus are up, only show underlines inside the menubar,
|
||||||
* not in the entire window.
|
* not in the entire window.
|
||||||
@ -834,7 +834,7 @@ _gtk_menu_shell_update_mnemonics (GtkMenuShell *menu_shell)
|
|||||||
_gtk_label_mnemonics_visible_apply_recursively (GTK_WIDGET (target),
|
_gtk_label_mnemonics_visible_apply_recursively (GTK_WIDGET (target),
|
||||||
mnemonics_visible);
|
mnemonics_visible);
|
||||||
else
|
else
|
||||||
gtk_window_set_mnemonics_visible (GTK_WINDOW (gtk_widget_get_toplevel (target)),
|
gtk_window_set_mnemonics_visible (GTK_WINDOW (gtk_widget_get_toplevel (GTK_WIDGET (target))),
|
||||||
mnemonics_visible);
|
mnemonics_visible);
|
||||||
|
|
||||||
if (target->active_menu_item)
|
if (target->active_menu_item)
|
||||||
|
Loading…
Reference in New Issue
Block a user