diff options
author | monsta <[email protected]> | 2016-10-15 15:39:12 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-10-15 15:39:12 +0300 |
commit | 40e26ed6d0e9ef84522ad0723f630bd7d796beec (patch) | |
tree | 67374984e9b7d2c60525976a008889775f7de4f3 /src/core/screen.c | |
parent | 3b69fd200912e27ce64caf3bf5d4338aab73177b (diff) | |
download | marco-40e26ed6d0e9ef84522ad0723f630bd7d796beec.tar.bz2 marco-40e26ed6d0e9ef84522ad0723f630bd7d796beec.tar.xz |
move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build option
Diffstat (limited to 'src/core/screen.c')
-rw-r--r-- | src/core/screen.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/core/screen.c b/src/core/screen.c index 162046e8..3c1caf61 100644 --- a/src/core/screen.c +++ b/src/core/screen.c @@ -1220,27 +1220,15 @@ get_window_pixbuf (MetaWindow *window, int *width, int *height) { -#if GTK_CHECK_VERSION (3, 0, 0) cairo_surface_t *surface; -#else - Pixmap pmap; -#endif GdkPixbuf *pixbuf, *scaled; double ratio; -#if GTK_CHECK_VERSION (3, 0, 0) surface = meta_compositor_get_window_surface (window->display->compositor, window); if (surface == None) return NULL; -#else - pmap = meta_compositor_get_window_pixmap (window->display->compositor, - window); - if (pmap == None) - return NULL; -#endif -#if GTK_CHECK_VERSION (3, 0, 0) meta_error_trap_push (NULL); pixbuf = meta_ui_get_pixbuf_from_surface (surface); @@ -1248,9 +1236,6 @@ get_window_pixbuf (MetaWindow *window, if (meta_error_trap_pop_with_return (NULL, FALSE) != Success) g_clear_object (&pixbuf); -#else - pixbuf = meta_ui_get_pixbuf_from_pixmap (pmap); -#endif if (pixbuf == NULL) return NULL; |