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-unix.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-unix.c')
-rw-r--r-- | gtk/gtkprintoperation-unix.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkprintoperation-unix.c b/gtk/gtkprintoperation-unix.c index adb3f5560a..59db658b87 100644 --- a/gtk/gtkprintoperation-unix.c +++ b/gtk/gtkprintoperation-unix.c @@ -383,9 +383,9 @@ unix_end_run (GtkPrintOperation *op, g_object_ref (op); if (!op_unix->data_sent) { - GDK_THREADS_LEAVE (); + gdk_threads_leave (); g_main_loop_run (op_unix->loop); - GDK_THREADS_ENTER (); + gdk_threads_enter (); } g_main_loop_unref (op_unix->loop); op_unix->loop = NULL; @@ -876,9 +876,9 @@ _gtk_print_operation_platform_backend_run_dialog (GtkPrintOperation *op, find_printer (printer_name, (GFunc) found_printer, &rdata); - GDK_THREADS_LEAVE (); + gdk_threads_leave (); g_main_loop_run (rdata.loop); - GDK_THREADS_ENTER (); + gdk_threads_enter (); g_main_loop_unref (rdata.loop); rdata.loop = NULL; |