[Sugar-devel] [sugar-artwork] Revert to GTK_WIDGET_IS_SENSITIVE() macro

Bernie Innocenti bernie at codewiz.org
Thu Jul 1 07:59:48 EDT 2010


This is needed to build sugar-artwork on the older versions of GTK.
When OLPC moves away from Fedora 11, we can drop backwards compatibility.

Signed-off-by: Bernie Innocenti <bernie at codewiz.org>
---
 gtk/engine/sugar-style.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gtk/engine/sugar-style.c b/gtk/engine/sugar-style.c
index 5e5dbfc..b81fe69 100644
--- a/gtk/engine/sugar-style.c
+++ b/gtk/engine/sugar-style.c
@@ -444,7 +444,7 @@ sugar_style_draw_box (GtkStyle       *style,
 
             sugar_fill_generic_info (&info, style, state_type, shadow_type, widget, detail, x, y, width, height);
             
-            if (widget && !gtk_widget_is_sensitive (widget))
+            if (widget && !GTK_WIDGET_IS_SENSITIVE (widget))
                 info.state = GTK_STATE_INSENSITIVE;
 
             /* Needed because the trough and bar are cached in a buffer inside GtkProgress. */
@@ -458,7 +458,7 @@ sugar_style_draw_box (GtkStyle       *style,
 
             sugar_fill_generic_info (&info, style, state_type, shadow_type, widget, detail, x, y, width, height);
             
-            if (widget && !gtk_widget_is_sensitive (widget))
+            if (widget && !GTK_WIDGET_IS_SENSITIVE (widget))
                 info.state = GTK_STATE_INSENSITIVE;
             
             if (widget && GTK_IS_PROGRESS_BAR (widget)) {
@@ -641,7 +641,7 @@ sugar_style_draw_shadow (GtkStyle       *style,
         if (widget && GTK_WIDGET_HAS_FOCUS (widget)) {
             info.state = GTK_STATE_ACTIVE;
         }
-        if (widget && !gtk_widget_is_sensitive (widget)) {
+        if (widget && !GTK_WIDGET_IS_SENSITIVE (widget)) {
             info.state = GTK_STATE_INSENSITIVE;
         }
 
-- 
1.7.1



More information about the Sugar-devel mailing list