From 2c985fd3b3a1690a5734bfc923a72bd4ee7381bd Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Thu, 17 Dec 2015 16:03:47 +0100 Subject: GTK3 trash: don't use deprecated gdk_error_trap_pop + GtkMisc --- trashapplet/src/xstuff.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'trashapplet/src/xstuff.c') diff --git a/trashapplet/src/xstuff.c b/trashapplet/src/xstuff.c index 62f7c6bc..20c97f6a 100644 --- a/trashapplet/src/xstuff.c +++ b/trashapplet/src/xstuff.c @@ -250,8 +250,12 @@ xstuff_set_pos_size (GdkWindow *window, int x, int y, int w, int h) gdk_window_move_resize (window, x, y, w, h); +#if GTK_CHECK_VERSION (3, 0, 0) + gdk_error_trap_pop_ignored (); +#else gdk_flush (); gdk_error_trap_pop (); +#endif g_object_set_data (G_OBJECT (window), "xstuff-cached-x", GINT_TO_POINTER (x)); g_object_set_data (G_OBJECT (window), "xstuff-cached-y", GINT_TO_POINTER (y)); -- cgit v1.2.1