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.
This commit is contained in:
Matthias Clasen
2012-07-28 14:52:40 +02:00
parent 144a5687c9
commit 8d0e88bac7
11 changed files with 45 additions and 45 deletions

View File

@ -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;