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/gtkprintoperation.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/gtkprintoperation.c')
-rw-r--r-- | gtk/gtkprintoperation.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkprintoperation.c b/gtk/gtkprintoperation.c index 937889dbf7..8cb69d3be2 100644 --- a/gtk/gtkprintoperation.c +++ b/gtk/gtkprintoperation.c @@ -3064,9 +3064,9 @@ print_pages (GtkPrintOperation *op, priv->rloop = g_main_loop_new (NULL, FALSE); g_object_ref (op); - GDK_THREADS_LEAVE (); + gdk_threads_leave (); g_main_loop_run (priv->rloop); - GDK_THREADS_ENTER (); + gdk_threads_enter (); g_main_loop_unref (priv->rloop); priv->rloop = NULL; |