[nautilus/gnome-2-32: 136/283] [eel] GSEAL eel-art-gtk-extensions.



commit 9525065cb906b515486e1979264850df3d4de5e4
Author: Bastien Nocera <hadess hadess net>
Date:   Fri Jun 11 13:06:45 2010 +0200

    [eel] GSEAL eel-art-gtk-extensions.

 eel/eel-art-gtk-extensions.c |   20 ++++++++++++--------
 1 files changed, 12 insertions(+), 8 deletions(-)
---
diff --git a/eel/eel-art-gtk-extensions.c b/eel/eel-art-gtk-extensions.c
index 73d9207..32a7c82 100644
--- a/eel/eel-art-gtk-extensions.c
+++ b/eel/eel-art-gtk-extensions.c
@@ -139,12 +139,14 @@ eel_gdk_window_get_screen_relative_bounds (GdkWindow *gdk_window)
 EelIRect
 eel_gtk_widget_get_bounds (GtkWidget *gtk_widget)
 {
+	GtkAllocation allocation;
 	g_return_val_if_fail (GTK_IS_WIDGET (gtk_widget), eel_irect_empty);
-	
-	return eel_irect_assign (gtk_widget->allocation.x,
-				     gtk_widget->allocation.y,
-				     (int) gtk_widget->allocation.width,
-				     (int) gtk_widget->allocation.height);
+
+	gtk_widget_get_allocation (gtk_widget, &allocation);
+	return eel_irect_assign (allocation.x,
+				     allocation.y,
+				     (int) allocation.width,
+				     (int) allocation.height);
 }
 
 /**
@@ -158,11 +160,13 @@ EelDimensions
 eel_gtk_widget_get_dimensions (GtkWidget *gtk_widget)
 {
 	EelDimensions dimensions;
+	GtkAllocation allocation;
 	
 	g_return_val_if_fail (GTK_IS_WIDGET (gtk_widget), eel_dimensions_empty);
-	
-	dimensions.width = (int) gtk_widget->allocation.width;
-	dimensions.height = (int) gtk_widget->allocation.height;
+
+	gtk_widget_get_allocation (gtk_widget, &allocation);
+	dimensions.width = (int) allocation.width;
+	dimensions.height = (int) allocation.height;
 	
 	return dimensions;
 }



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