diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-09-18 19:57:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-09-26 22:18:19 -0400 |
commit | f53ad339941a6cab1468eef279bd518992ae68bc (patch) | |
tree | e459767bbc1eb9cd30ae0ced0422eabbff5809a3 /gtk/gtktoolbar.c | |
parent | eac1959d2c843dfc55353ffc89c16b74cb26e9bc (diff) | |
download | gtk+-f53ad339941a6cab1468eef279bd518992ae68bc.tar.gz |
Remove GtkObject completely
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index 46d37cf287..bc91bff85e 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -3390,7 +3390,7 @@ toolbar_content_get_state (ToolbarContent *content) static gboolean toolbar_content_child_visible (ToolbarContent *content) { - return GTK_WIDGET_CHILD_VISIBLE (content->item); + return gtk_widget_get_child_visible (content->item); } static void |