Fixed statement in gtkwindow.c when toplevelness changes.

Fixed a typo when checking if the heirarchy toplevel is a toplevel
before firing the hierarchy-changed signal.
This commit is contained in:
Tristan Van Berkom 2011-01-06 14:27:03 +09:00
parent a28295a742
commit 44a9b1c35e

View File

@ -9255,7 +9255,7 @@ _gtk_window_set_is_toplevel (GtkWindow *window,
* things happen differently.
*/
toplevel = gtk_widget_get_toplevel (widget);
if (!gtk_widget_is_toplevel (widget))
if (!gtk_widget_is_toplevel (toplevel))
toplevel = NULL;
_gtk_widget_set_is_toplevel (widget, TRUE);