From f743caf3054bbbadc6b98c9e746fd8ae5114b142 Mon Sep 17 00:00:00 2001 From: infirit Date: Fri, 16 May 2014 16:57:05 +0200 Subject: Use gdk_window_get_width also for gtk2 It was introduced in gtk+-2.24 --- libmate-panel-applet/mate-panel-applet.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libmate-panel-applet/mate-panel-applet.c') diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c index efcca300..7a514c58 100644 --- a/libmate-panel-applet/mate-panel-applet.c +++ b/libmate-panel-applet/mate-panel-applet.c @@ -1461,12 +1461,10 @@ mate_panel_applet_get_pixmap (MatePanelApplet *applet, } #endif -#if GTK_CHECK_VERSION(3, 0, 0) width = gdk_window_get_width(window); height = gdk_window_get_height(window); +#if GTK_CHECK_VERSION(3, 0, 0) surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, width, height); -#else - gdk_drawable_get_size(GDK_DRAWABLE(window), &width, &height); #endif #if GTK_CHECK_VERSION (3, 0, 0) -- cgit v1.2.1