From b2cfa83c0cff0211ac63356fe16cd2ad2144bd91 Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Thu, 10 Dec 2015 20:32:24 +0100 Subject: GTK3: don't use deprecated GDK_THREADS_ENTER/LEAVE --- savers/gste-slideshow.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'savers') diff --git a/savers/gste-slideshow.c b/savers/gste-slideshow.c index 887ec87..4c0fb99 100644 --- a/savers/gste-slideshow.c +++ b/savers/gste-slideshow.c @@ -428,7 +428,9 @@ results_pull_func (GSTESlideshow *show) { OpResult *result; +#if !GTK_CHECK_VERSION (3, 0, 0) GDK_THREADS_ENTER (); +#endif g_async_queue_lock (show->priv->results_q); @@ -447,7 +449,9 @@ results_pull_func (GSTESlideshow *show) g_async_queue_unlock (show->priv->results_q); +#if !GTK_CHECK_VERSION (3, 0, 0) GDK_THREADS_LEAVE (); +#endif return FALSE; } @@ -685,7 +689,9 @@ op_load_image (GSTESlideshow *show, window_width, window_height); +#if !GTK_CHECK_VERSION (3, 0, 0) GDK_THREADS_ENTER (); +#endif g_async_queue_lock (show->priv->results_q); g_async_queue_push_unlocked (show->priv->results_q, op_result); @@ -697,7 +703,9 @@ op_load_image (GSTESlideshow *show, } g_async_queue_unlock (show->priv->results_q); +#if !GTK_CHECK_VERSION (3, 0, 0) GDK_THREADS_LEAVE (); +#endif } static gpointer -- cgit v1.2.1