diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2018-02-02 15:08:02 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2018-02-03 12:06:58 +0100 |
commit | 334acbfc39cc08869932ec046e4d13e6c4b64be6 (patch) | |
tree | 006f9525b16e22231dde569193617bc62182ccda /gdk/broadway/gdkwindow-broadway.c | |
parent | dfc131c7ecf93287caef22ddac9b37b4825b2cf5 (diff) | |
download | gtk+-334acbfc39cc08869932ec046e4d13e6c4b64be6.tar.gz |
Replace gdk_threads_add_idle* with g_idle_add()
The main GDK thread lock is not portable and deprecated.
The only reason why gdk_threads_add_idle() and
gdk_threads_add_idle_full() exist is to allow invoking a callback with
the GDK lock held, in case 3rd party libraries still use the deprecated
gdk_threads_enter()/gdk_threads_leave() API.
Since we're removing the GDK lock, and we're releasing a new major API,
such code cannot exist any more; this means we can use the GLib API for
installing idle callbacks.
https://bugzilla.gnome.org/show_bug.cgi?id=793124
Diffstat (limited to 'gdk/broadway/gdkwindow-broadway.c')
-rw-r--r-- | gdk/broadway/gdkwindow-broadway.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/broadway/gdkwindow-broadway.c b/gdk/broadway/gdkwindow-broadway.c index 12fb5256e3..ebbd03e658 100644 --- a/gdk/broadway/gdkwindow-broadway.c +++ b/gdk/broadway/gdkwindow-broadway.c @@ -115,7 +115,7 @@ queue_flush (GdkWindow *window) { if (flush_id == 0) { - flush_id = gdk_threads_add_idle (flush_idle, NULL); + flush_id = g_idle_add (flush_idle, NULL); g_source_set_name_by_id (flush_id, "[gtk+] flush_idle"); } } |