summaryrefslogtreecommitdiff
path: root/eel
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-07-31 17:08:27 +0200
committerCosimo Cecchi <cosimoc@gnome.org>2012-07-31 17:08:27 +0200
commit195e7ee00d70f64b5b50bf4770d8b33aa7093d39 (patch)
tree175376615430eabf94597590bb997f02627d5d03 /eel
parent60a191a9004c58310882fcd8981d254b16f6e837 (diff)
downloadnautilus-195e7ee00d70f64b5b50bf4770d8b33aa7093d39.tar.gz
eel: don't use GDK_THREADS macros
Use the function equivalents.
Diffstat (limited to 'eel')
-rw-r--r--eel/eel-canvas.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/eel/eel-canvas.c b/eel/eel-canvas.c
index 9191caa80..bc643531d 100644
--- a/eel/eel-canvas.c
+++ b/eel/eel-canvas.c
@@ -3320,7 +3320,7 @@ idle_handler (gpointer data)
{
EelCanvas *canvas;
- GDK_THREADS_ENTER ();
+ gdk_threads_enter ();
canvas = EEL_CANVAS (data);
do_update (canvas);
@@ -3328,7 +3328,7 @@ idle_handler (gpointer data)
/* Reset idle id */
canvas->idle_id = 0;
- GDK_THREADS_LEAVE ();
+ gdk_threads_leave ();
return FALSE;
}