Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/libview/ev-view-presentation.c
diff options
context:
space:
mode:
authorHib Eris <hib@hiberis.nl>2010-03-29 14:54:13 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2010-03-31 17:15:53 (GMT)
commitf020f9ced6dfd3efadab6add9665066a4bd03a5f (patch)
treea8b8e7a9d64625060d3480e7859a93a75cc89572 /libview/ev-view-presentation.c
parent44f3d100e1be64618e4a58d18e2df71b23bc3bbe (diff)
Replace GTK_WIDGET_REALIZED() with gtk_widget_get_realized()
Diffstat (limited to 'libview/ev-view-presentation.c')
-rw-r--r--libview/ev-view-presentation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libview/ev-view-presentation.c b/libview/ev-view-presentation.c
index 17491ae..e033f12 100644
--- a/libview/ev-view-presentation.c
+++ b/libview/ev-view-presentation.c
@@ -831,7 +831,7 @@ ev_view_presentation_set_cursor (EvViewPresentation *pview,
return;
widget = GTK_WIDGET (pview);
- if (!GTK_WIDGET_REALIZED (widget))
+ if (!gtk_widget_get_realized (widget))
gtk_widget_realize (widget);
pview->cursor = view_cursor;