summaryrefslogtreecommitdiff
path: root/pluma/pluma-view.c
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2015-11-18 21:30:05 +0100
committerWolfgang Ulbrich <[email protected]>2015-12-01 22:46:55 +0100
commita08bd0ed2f0959255dc86f7976ec42d512e813b9 (patch)
tree4a5d4b25f0067448e6747cd8e3ac5b957f616caa /pluma/pluma-view.c
parent6454339a1a2141ff8d33dce2dfff4fd0fc52b227 (diff)
downloadpluma-a08bd0ed2f0959255dc86f7976ec42d512e813b9.tar.bz2
pluma-a08bd0ed2f0959255dc86f7976ec42d512e813b9.tar.xz
GTK3: don't use deprecated gdk_threads_{enter/leave}
Diffstat (limited to 'pluma/pluma-view.c')
-rw-r--r--pluma/pluma-view.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/pluma/pluma-view.c b/pluma/pluma-view.c
index 6c76efac..293d5da5 100644
--- a/pluma/pluma-view.c
+++ b/pluma/pluma-view.c
@@ -970,12 +970,16 @@ hide_search_window (PlumaView *view, gboolean cancel)
static gboolean
search_entry_flush_timeout (PlumaView *view)
{
+#if !GTK_CHECK_VERSION (3, 0, 0)
GDK_THREADS_ENTER ();
+#endif
view->priv->typeselect_flush_timeout = 0;
hide_search_window (view, FALSE);
+#if !GTK_CHECK_VERSION (3, 0, 0)
GDK_THREADS_LEAVE ();
+#endif
return FALSE;
}
@@ -1189,11 +1193,15 @@ real_search_enable_popdown (gpointer data)
{
PlumaView *view = (PlumaView *)data;
+#if !GTK_CHECK_VERSION (3, 0, 0)
GDK_THREADS_ENTER ();
+#endif
view->priv->disable_popdown = FALSE;
+#if !GTK_CHECK_VERSION (3, 0, 0)
GDK_THREADS_LEAVE ();
+#endif
return FALSE;
}