diff options
author | Matthias Clasen <mclasen@redhat.com> | 2012-07-28 14:52:40 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2012-07-30 18:01:47 +0200 |
commit | 8d0e88bac77c81bbe3e9ae62639bbc9629c195dd (patch) | |
tree | b6b4a836f1597c881fc466db66691a8f1f692a86 /gtk/gtkclipboard-wayland.c | |
parent | 144a5687c9c5eae603ce7a105812daffed862fc1 (diff) | |
download | gtk+-8d0e88bac77c81bbe3e9ae62639bbc9629c195dd.tar.gz |
gtk: Don't use GDK_THREADS_ENTER/LEAVE macros internally
These are just wrappers for the functions, and we want to
deprecate them. Stopping to use them internally is a good
first step.
Diffstat (limited to 'gtk/gtkclipboard-wayland.c')
-rw-r--r-- | gtk/gtkclipboard-wayland.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkclipboard-wayland.c b/gtk/gtkclipboard-wayland.c index ef8366e409..3ed3b4e6e4 100644 --- a/gtk/gtkclipboard-wayland.c +++ b/gtk/gtkclipboard-wayland.c @@ -674,9 +674,9 @@ gtk_clipboard_wait_for_contents (GtkClipboard *clipboard, if (g_main_loop_is_running (closure->loop)) { - GDK_THREADS_LEAVE (); + gdk_threads_leave (); g_main_loop_run (closure->loop); - GDK_THREADS_ENTER (); + gdk_threads_enter (); } g_main_loop_unref (closure->loop); |