summaryrefslogtreecommitdiff
path: root/libview
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2014-03-30 10:38:49 +0200
committerStefano Karapetsas <[email protected]>2014-03-30 10:38:49 +0200
commit256d520ce80c3adb6beb7156429610234bcadbe7 (patch)
tree7953b66323358dffcb20bf30e1ea86f39a11e9d0 /libview
parentec3b83d34ffeaf2c0d16ba013fcba64f17fab203 (diff)
parent02a7efaf7d34c2ecbe5e4a367fc72c46028e5765 (diff)
downloadatril-256d520ce80c3adb6beb7156429610234bcadbe7.tar.bz2
atril-256d520ce80c3adb6beb7156429610234bcadbe7.tar.xz
Merge pull request #76 from Glorf/master
GTK3-compatibility fixes.
Diffstat (limited to 'libview')
-rw-r--r--libview/ev-timeline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libview/ev-timeline.c b/libview/ev-timeline.c
index 5887c73b..4f918ea3 100644
--- a/libview/ev-timeline.c
+++ b/libview/ev-timeline.c
@@ -150,7 +150,7 @@ ev_timeline_run_frame (EvTimeline *timeline)
gdouble progress;
guint elapsed_time;
- GDK_THREADS_ENTER ();
+ gdk_threads_enter();
priv = EV_TIMELINE_GET_PRIV (timeline);
@@ -174,7 +174,7 @@ ev_timeline_run_frame (EvTimeline *timeline)
}
}
- GDK_THREADS_LEAVE ();
+ gdk_threads_leave();
return TRUE;
}