[gnome-shell] Add missing gtk_widget_get_allocation()



commit a90c81b2c70fef62a9d0e7c3c5cc6c83aa03f7d8
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Mon May 10 14:28:07 2010 -0400

    Add missing gtk_widget_get_allocation()
    
    In the change from widget->allocation to gtk_widget_get_allocation(),
    one addition of gtk_widget_get_allocation() was missed. Add it.

 src/tray/na-tray-child.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/src/tray/na-tray-child.c b/src/tray/na-tray-child.c
index be0a616..30f2399 100644
--- a/src/tray/na-tray-child.c
+++ b/src/tray/na-tray-child.c
@@ -399,7 +399,6 @@ na_tray_child_set_composited (NaTrayChild *child,
 void
 na_tray_child_force_redraw (NaTrayChild *child)
 {
-  GtkAllocation allocation;
   GtkWidget *widget = GTK_WIDGET (child);
 
   if (gtk_widget_get_mapped (GTK_WIDGET (child)) && child->parent_relative_bg)
@@ -410,8 +409,11 @@ na_tray_child_force_redraw (NaTrayChild *child)
        * the redraw. It should be ok for GtkStatusIcon or EggTrayIcon.
        */
       Display *xdisplay = GDK_DISPLAY_XDISPLAY (gtk_widget_get_display (widget));
+      GtkAllocation allocation;
       XEvent xev;
 
+      gtk_widget_get_allocation (widget, &allocation);
+
       xev.xexpose.type = Expose;
       xev.xexpose.window = GDK_WINDOW_XWINDOW (gtk_socket_get_plug_window (GTK_SOCKET (child)));
       xev.xexpose.x = 0;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]