summaryrefslogtreecommitdiff
path: root/stickynotes/stickynotes_applet_callbacks.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-06-02 22:42:37 +0200
committerinfirit <[email protected]>2014-06-02 22:42:37 +0200
commit9bf73874d45075aad80303e9c0ee96cdc9f3c450 (patch)
tree1be1670be2ea9e872cd4c444652ff697b2753726 /stickynotes/stickynotes_applet_callbacks.c
parent53a1fe800f9f0c90dc298ba228b29852147794bb (diff)
downloadmate-applets-9bf73874d45075aad80303e9c0ee96cdc9f3c450.tar.bz2
mate-applets-9bf73874d45075aad80303e9c0ee96cdc9f3c450.tar.xz
Cleanup GTK_CHECK_VERSION and unify where possible
gdk_x11_window_foreign_new_for_display | since 2.24 gdk_window_get_width | since 2.24 gdk_window_get_height | since 2.24 gdk_x11_display_get_xdisplay | since 2.2 gdk_window_get_display | since 2.24 gdk_x11_window_foreign_new_for_display | since 2.24 GDK_WINDOW_XID | since always GDK_SCREEN_XDISPLAY | since always
Diffstat (limited to 'stickynotes/stickynotes_applet_callbacks.c')
-rw-r--r--stickynotes/stickynotes_applet_callbacks.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/stickynotes/stickynotes_applet_callbacks.c b/stickynotes/stickynotes_applet_callbacks.c
index 6efece25..038509eb 100644
--- a/stickynotes/stickynotes_applet_callbacks.c
+++ b/stickynotes/stickynotes_applet_callbacks.c
@@ -168,14 +168,9 @@ void install_check_click_on_desktop (void)
return;
}
-#if GTK_CHECK_VERSION (3, 0, 0)
/* Access the desktop window. desktop_window is the root window for the
* default screen, so we know using gdk_display_get_default() is correct. */
window = gdk_x11_window_foreign_new_for_display (gdk_display_get_default (), desktop_window);
-#else
- /* Access the desktop window */
- window = gdk_window_foreign_new (desktop_window);
-#endif
/* It may contain an atom to tell us which other window to monitor */
user_time_window = gdk_x11_get_xatom_by_name ("_NET_WM_USER_TIME_WINDOW");
@@ -203,11 +198,7 @@ void install_check_click_on_desktop (void)
{
/* We have another window to monitor */
desktop_window = *data;
-#if GTK_CHECK_VERSION (3, 0, 0)
window = gdk_x11_window_foreign_new_for_display (gdk_window_get_display (window), desktop_window);
-#else
- window = gdk_window_foreign_new (desktop_window);
-#endif
}
}
}