summaryrefslogtreecommitdiff
path: root/gtk/gtkpathbar.c
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2010-03-02 07:16:02 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2010-04-03 20:58:59 -0400
commitee0bf98769e280925ece858626209f9a32cddbf8 (patch)
tree4810a1c1899014634dd3af76a78f11b0ce7d98b6 /gtk/gtkpathbar.c
parente53efb120ae5251b44d089ed6fe35f411a674dd4 (diff)
downloadgtk+-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.c2
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);