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 <ber...@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 _______________________________________________ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel