From 16a263c5ee34e95991b4e49f8e865c424d2d3b8c Mon Sep 17 00:00:00 2001 From: Bernie Innocenti Date: Thu, 01 Jul 2010 11:47:23 +0000 Subject: Revert to GTK_WIDGET_IS_SENSITIVE() macro 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 Acked-by: Benjamin Berg --- 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; } -- cgit v0.9.1