From 782f9380134734731a1547970d4bc9ab7b57410e Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Fri, 15 Jan 2016 13:36:52 +0100 Subject: GTK3: don't use deprecated gdk_threads_{enter/leave} () Since we don't ever call gdk_threads_init() --- libcaja-private/caja-thumbnails.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libcaja-private') diff --git a/libcaja-private/caja-thumbnails.c b/libcaja-private/caja-thumbnails.c index 7e279858..211dce8e 100644 --- a/libcaja-private/caja-thumbnails.c +++ b/libcaja-private/caja-thumbnails.c @@ -277,7 +277,9 @@ thumbnail_thread_notify_file_changed (gpointer image_uri) { CajaFile *file; +#if !GTK_CHECK_VERSION (3, 0, 0) gdk_threads_enter (); +#endif file = caja_file_get_by_uri ((char *) image_uri); #ifdef DEBUG_THUMBNAILS @@ -294,7 +296,9 @@ thumbnail_thread_notify_file_changed (gpointer image_uri) } g_free (image_uri); +#if !GTK_CHECK_VERSION (3, 0, 0) gdk_threads_leave (); +#endif return FALSE; } -- cgit v1.2.1