diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-02-27 05:24:24 +0100 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-03-01 05:32:51 +0100 |
commit | a27d5a2c9eba7af5b056de32ff9b2b4dd1eb97e1 (patch) | |
tree | 56f207c8731b36bdad916070df80fe2cea151039 /gtk/gtkstatusbar.c | |
parent | 4f78f70b15f861cca115f578b0f3f4ad3ad087e7 (diff) | |
download | gtk+-a27d5a2c9eba7af5b056de32ff9b2b4dd1eb97e1.tar.gz |
Deprecate widget flag: GTK_WIDGET_IS_SENSITIVE
Use gtk_widget_is_sensitive() instead
https://bugzilla.gnome.org/show_bug.cgi?id=69872
Diffstat (limited to 'gtk/gtkstatusbar.c')
-rw-r--r-- | gtk/gtkstatusbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkstatusbar.c b/gtk/gtkstatusbar.c index eda9caae0d..125efef98b 100644 --- a/gtk/gtkstatusbar.c +++ b/gtk/gtkstatusbar.c @@ -647,7 +647,7 @@ set_grip_cursor (GtkStatusbar *statusbar) GdkCursorType cursor_type; GdkCursor *cursor; - if (GTK_WIDGET_IS_SENSITIVE (widget)) + if (gtk_widget_is_sensitive (widget)) { if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) cursor_type = GDK_BOTTOM_RIGHT_CORNER; |