summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2011-06-25 23:03:13 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2011-06-25 23:03:13 +0000
commit705ea7c18f48445673776aff08ed72bc72d0edc3 (patch)
treee46ae5efc75b55279f68fbfcd93c420a823016fa /src
parentRemoved questionable operator altogether. (diff)
parentGtk cleanup: GTK_WIDGET_IS_SENSITIVE (diff)
downloadinkscape-705ea7c18f48445673776aff08ed72bc72d0edc3.tar.gz
inkscape-705ea7c18f48445673776aff08ed72bc72d0edc3.zip
Gtk cleanup: GTK_WIDGET_IS_SENSITIVE
(bzr r10362)
Diffstat (limited to 'src')
-rw-r--r--src/ege-adjustment-action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ege-adjustment-action.cpp b/src/ege-adjustment-action.cpp
index 6b0ffd1ab..9f8356495 100644
--- a/src/ege-adjustment-action.cpp
+++ b/src/ege-adjustment-action.cpp
@@ -987,7 +987,7 @@ static gboolean process_tab( GtkWidget* widget, int direction )
GList* subChildren = gtk_container_get_children( GTK_CONTAINER(child) );
if ( subChildren ) {
GList* last = g_list_last(subChildren);
- if ( last && GTK_IS_SPIN_BUTTON(last->data) && GTK_WIDGET_IS_SENSITIVE( GTK_WIDGET(last->data) ) ) {
+ if ( last && GTK_IS_SPIN_BUTTON(last->data) && gtk_widget_is_sensitive( GTK_WIDGET(last->data) ) ) {
gtk_widget_grab_focus( GTK_WIDGET(last->data) );
handled = TRUE;
mid = 0; /* to stop loop */