Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2010-03-29 14:58:14 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-03-31 17:32:45 (GMT)
commit41d617b23b7dd9e3162779396b3557bcde17d53b (patch)
tree7e1aa175f7f3d51fbcb08b3a15fa0b3d67de2043 /libview
parentf020f9ced6dfd3efadab6add9665066a4bd03a5f (diff)
Replace GTK_WIDGET_VISIBLE() with gtk_widget_get_visible()
Diffstat (limited to 'libview')
-rw-r--r--libview/ev-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c
index 2837f0f..8ccee69 100644
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -2398,7 +2398,7 @@ ev_view_window_child_move_with_parent (EvView *view,
ev_view_window_child_move (view, child, dest_x, dest_y);
}
- if (child->visible && !GTK_WIDGET_VISIBLE (window))
+ if (child->visible && !gtk_widget_get_visible (window))
gtk_widget_show (window);
}