diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-03-02 07:16:02 +0100 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2010-04-03 20:58:59 -0400 |
commit | ee0bf98769e280925ece858626209f9a32cddbf8 (patch) | |
tree | 4810a1c1899014634dd3af76a78f11b0ce7d98b6 /gtk/gtkpathbar.c | |
parent | e53efb120ae5251b44d089ed6fe35f411a674dd4 (diff) | |
download | gtk+-ee0bf98769e280925ece858626209f9a32cddbf8.tar.gz |
Deprecate widget flag: GTK_WIDGET_REALIZED
Use gtk_widget_get_realized() instead
https://bugzilla.gnome.org/show_bug.cgi?id=69872
Diffstat (limited to 'gtk/gtkpathbar.c')
-rw-r--r-- | gtk/gtkpathbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkpathbar.c b/gtk/gtkpathbar.c index 81d06c642d..b7b6cd22e1 100644 --- a/gtk/gtkpathbar.c +++ b/gtk/gtkpathbar.c @@ -464,7 +464,7 @@ gtk_path_bar_size_allocate (GtkWidget *widget, widget->allocation = *allocation; - if (GTK_WIDGET_REALIZED (widget)) + if (gtk_widget_get_realized (widget)) gdk_window_move_resize (path_bar->event_window, allocation->x, allocation->y, allocation->width, allocation->height); |