diff options
author | infirit <[email protected]> | 2014-10-25 12:35:42 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-10-25 12:35:42 +0200 |
commit | 20615934a9d4faf8cd45de56c51357d985461267 (patch) | |
tree | adbb76e5fb32a72f51b0e4a6163c52b6a3d140b7 /src/core/display.c | |
parent | 4134fe7aaf52512403e5a1319ed61fab0ce288d8 (diff) | |
download | marco-20615934a9d4faf8cd45de56c51357d985461267.tar.bz2 marco-20615934a9d4faf8cd45de56c51357d985461267.tar.xz |
Cleanup GTK_CHECK_VERSION and unify where possible
gdk_x11_window_lookup_for_display since 2.24
GDK_WINDOW_XID since always
gtk_widget_get_visible since 2.18
gtk_widget_set_mapped since 2.20
gdk_event_new since 2.2
gdk_x11_window_lookup_for_display since 2.24
gdk_text_property_to_utf8_list_for_display since 2.2
gtk_widget_get_realized since 2.20
gdk_visual_get_depth since 2.22
gtk_widget_get_window since 2.14
gtk_widget_set_allocation since 2.18
Diffstat (limited to 'src/core/display.c')
-rw-r--r-- | src/core/display.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/display.c b/src/core/display.c index f569c461..e12dd60a 100644 --- a/src/core/display.c +++ b/src/core/display.c @@ -82,6 +82,7 @@ #include <X11/extensions/Xdamage.h> #include <X11/extensions/Xfixes.h> #include <gtk/gtk.h> + #include <gdk/gdkx.h> #endif #include <string.h> @@ -1454,11 +1455,7 @@ static gboolean maybe_send_event_to_gtk(MetaDisplay* display, XEvent* xevent) return FALSE; } -#if GTK_CHECK_VERSION (3, 0, 0) gdk_window = gdk_x11_window_lookup_for_display(gdk_display, window); -#else - gdk_window = gdk_window_lookup_for_display(gdk_display, window); -#endif if (gdk_window == NULL) { |