Fix attach/attach->parent type. (#136919, Tim Mooney)

Thu Mar 11 16:28:15 2004  Owen Taylor  <otaylor@redhat.com>

        * gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
        type. (#136919, Tim Mooney)
This commit is contained in:
Owen Taylor 2004-03-11 21:38:21 +00:00 committed by Owen Taylor
parent 865d3dd267
commit 5c2b9546d6
6 changed files with 27 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Thu Mar 11 16:28:15 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
type. (#136919, Tim Mooney)
Thu Mar 11 16:18:51 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert

View File

@ -1,3 +1,8 @@
Thu Mar 11 16:28:15 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
type. (#136919, Tim Mooney)
Thu Mar 11 16:18:51 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert

View File

@ -1,3 +1,8 @@
Thu Mar 11 16:28:15 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
type. (#136919, Tim Mooney)
Thu Mar 11 16:18:51 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert

View File

@ -1,3 +1,8 @@
Thu Mar 11 16:28:15 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
type. (#136919, Tim Mooney)
Thu Mar 11 16:18:51 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert

View File

@ -1,3 +1,8 @@
Thu Mar 11 16:28:15 2004 Owen Taylor <otaylor@redhat.com>
* gtk/gtkmenu.c (gtk_menu_get_toplevel): Fix attach/attach->parent
type. (#136919, Tim Mooney)
Thu Mar 11 16:18:51 2004 Jonathan Blandford <jrb@redhat.com>
* gtk/gtkfilechooserdefault.c (shortcuts_insert_path): revert

View File

@ -1659,10 +1659,10 @@ gtk_menu_get_toplevel (GtkWidget *menu)
attach = attach->parent;
if (GTK_IS_MENU (attach))
return gtk_menu_get_toplevel (attach->parent);
return gtk_menu_get_toplevel (attach);
else if (GTK_IS_WIDGET (attach))
{
toplevel = gtk_widget_get_toplevel (attach->parent);
toplevel = gtk_widget_get_toplevel (attach);
if (GTK_WIDGET_TOPLEVEL (toplevel))
return toplevel;
}