mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
cast to GTK_WIDGET() for the gtk_widget_hide() call.
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org> * gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET() for the gtk_widget_hide() call.
This commit is contained in:
parent
01780084d5
commit
d263d0bcc0
@ -1,3 +1,8 @@
|
||||
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
|
||||
for the gtk_widget_hide() call.
|
||||
|
||||
Thu Nov 20 14:51:41 2003 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
|
||||
@ -20,6 +25,7 @@ Thu Nov 20 13:10:29 GMT 2003 Tony Gale <gale@gtk.org>
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
|
||||
throw up an error dialog if the desktop doesn't exist.
|
||||
(error_message): Handle the case where there is no real toplevel
|
||||
|
||||
yet.
|
||||
(list_model_filter_func): Always let folders pass through (patch
|
||||
by Dave Malcolm).
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
|
||||
for the gtk_widget_hide() call.
|
||||
|
||||
Thu Nov 20 14:51:41 2003 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
|
||||
@ -20,6 +25,7 @@ Thu Nov 20 13:10:29 GMT 2003 Tony Gale <gale@gtk.org>
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
|
||||
throw up an error dialog if the desktop doesn't exist.
|
||||
(error_message): Handle the case where there is no real toplevel
|
||||
|
||||
yet.
|
||||
(list_model_filter_func): Always let folders pass through (patch
|
||||
by Dave Malcolm).
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
|
||||
for the gtk_widget_hide() call.
|
||||
|
||||
Thu Nov 20 14:51:41 2003 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
|
||||
@ -20,6 +25,7 @@ Thu Nov 20 13:10:29 GMT 2003 Tony Gale <gale@gtk.org>
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
|
||||
throw up an error dialog if the desktop doesn't exist.
|
||||
(error_message): Handle the case where there is no real toplevel
|
||||
|
||||
yet.
|
||||
(list_model_filter_func): Always let folders pass through (patch
|
||||
by Dave Malcolm).
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
|
||||
for the gtk_widget_hide() call.
|
||||
|
||||
Thu Nov 20 14:51:41 2003 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
|
||||
@ -20,6 +25,7 @@ Thu Nov 20 13:10:29 GMT 2003 Tony Gale <gale@gtk.org>
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
|
||||
throw up an error dialog if the desktop doesn't exist.
|
||||
(error_message): Handle the case where there is no real toplevel
|
||||
|
||||
yet.
|
||||
(list_model_filter_func): Always let folders pass through (patch
|
||||
by Dave Malcolm).
|
||||
|
@ -1,3 +1,8 @@
|
||||
Thu Nov 20 15:41:56 2003 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* gtk/gtkmenu.c (gtk_menu_set_tearoff_state): cast to GTK_WIDGET()
|
||||
for the gtk_widget_hide() call.
|
||||
|
||||
Thu Nov 20 14:51:41 2003 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreedatalist.c (gtk_tree_data_list_compare_func): Patch
|
||||
@ -20,6 +25,7 @@ Thu Nov 20 13:10:29 GMT 2003 Tony Gale <gale@gtk.org>
|
||||
* gtk/gtkfilechooserdefault.c (shortcuts_append_desktop): Do not
|
||||
throw up an error dialog if the desktop doesn't exist.
|
||||
(error_message): Handle the case where there is no real toplevel
|
||||
|
||||
yet.
|
||||
(list_model_filter_func): Always let folders pass through (patch
|
||||
by Dave Malcolm).
|
||||
|
@ -1673,7 +1673,7 @@ gtk_menu_set_tearoff_state (GtkMenu *menu,
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_widget_hide (menu);
|
||||
gtk_widget_hide (GTK_WIDGET (menu));
|
||||
gtk_widget_hide (menu->tearoff_window);
|
||||
gtk_menu_reparent (menu, menu->toplevel, FALSE);
|
||||
gtk_widget_destroy (menu->tearoff_window);
|
||||
|
Loading…
Reference in New Issue
Block a user