[gtk+/rendering-cleanup-next] offscreenwindow: Get rid of	gdk_drawable_get_size() usage
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc: 
- Subject: [gtk+/rendering-cleanup-next] offscreenwindow: Get rid of	gdk_drawable_get_size() usage
- Date: Mon, 20 Sep 2010 15:33:52 +0000 (UTC)
commit 819076ca9ef913ffb4079fcf155b29ed4af2ecc8
Author: Benjamin Otte <otte redhat com>
Date:   Mon Sep 20 16:39:41 2010 +0200
    offscreenwindow: Get rid of gdk_drawable_get_size() usage
 gtk/gtkoffscreenwindow.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/gtk/gtkoffscreenwindow.c b/gtk/gtkoffscreenwindow.c
index 06ab1e6..7d95516 100644
--- a/gtk/gtkoffscreenwindow.c
+++ b/gtk/gtkoffscreenwindow.c
@@ -310,13 +310,10 @@ gtk_offscreen_window_get_pixbuf (GtkOffscreenWindow *offscreen)
 
   if (surface != NULL)
     {
-      gint width, height;
-
-      gdk_drawable_get_size (window, &width, &height);
-
       pixbuf = gdk_pixbuf_get_from_surface (NULL, surface,
                                             0, 0, 0, 0,
-                                            width, height);
+                                            gdk_window_get_width (window),
+                                            gdk_window_get_height (window));
     }
 
   return pixbuf;
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]