summaryrefslogtreecommitdiff
path: root/applets
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2013-11-16 23:00:19 +0100
committerraveit65 <[email protected]>2013-11-16 23:00:19 +0100
commit22dae140b0fcc7050c524ff6785673b5eee59c2b (patch)
tree8c15d5fee1941b34cfdb13452c5c77ec550e071f /applets
parent6baad9dafc848b65cc469e03ea12388d98db9cd1 (diff)
downloadmate-panel-22dae140b0fcc7050c524ff6785673b5eee59c2b.tar.bz2
mate-panel-22dae140b0fcc7050c524ff6785673b5eee59c2b.tar.xz
GTK3: Fix compile warning by using gdk_error_trap_pop_ignored()
Diffstat (limited to 'applets')
-rw-r--r--applets/notification_area/na-tray-child.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/applets/notification_area/na-tray-child.c b/applets/notification_area/na-tray-child.c
index 93ac4bb8..d214f587 100644
--- a/applets/notification_area/na-tray-child.c
+++ b/applets/notification_area/na-tray-child.c
@@ -308,7 +308,11 @@ na_tray_child_new (GdkScreen *screen,
gdk_error_trap_push ();
result = XGetWindowAttributes (xdisplay, icon_window,
&window_attributes);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gdk_error_trap_pop_ignored ();
+#else
gdk_error_trap_pop ();
+#endif
if (!result) /* Window already gone */
return NULL;
@@ -508,7 +512,11 @@ na_tray_child_force_redraw (NaTrayChild *child)
* since that is asynchronous.
*/
XSync (xdisplay, False);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gdk_error_trap_pop_ignored ();
+#else
gdk_error_trap_pop ();
+#endif
#else
/* Hiding and showing is the safe way to do it, but can result in more
* flickering.
@@ -552,7 +560,11 @@ _get_wmclass (Display *xdisplay,
gdk_error_trap_push ();
XGetClassHint (xdisplay, xwindow, &ch);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gdk_error_trap_pop_ignored ();
+#else
gdk_error_trap_pop ();
+#endif
if (res_class)
*res_class = NULL;