summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2011-06-25 23:37:12 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2011-06-25 23:37:12 +0000
commite9ac7d48112f36db332905fcc3692c44641f4a66 (patch)
tree85021a9fcdac3cf8cf3b6702a0973f80830be171 /src
parentGtk cleanup: gtk_object_set_data (diff)
downloadinkscape-e9ac7d48112f36db332905fcc3692c44641f4a66.tar.gz
inkscape-e9ac7d48112f36db332905fcc3692c44641f4a66.zip
Gtk cleanup: GTK_WIDGET_HAS_FOCUS
(bzr r10350.1.6)
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 9f8356495..45a44ae0c 100644
--- a/src/ege-adjustment-action.cpp
+++ b/src/ege-adjustment-action.cpp
@@ -779,7 +779,7 @@ static GtkWidget* create_menu_item( GtkAction* action )
void value_changed_cb( GtkSpinButton* spin, EgeAdjustmentAction* act )
{
- if ( GTK_WIDGET_HAS_FOCUS( GTK_WIDGET(spin) ) ) {
+ if ( gtk_widget_has_focus( GTK_WIDGET(spin) ) ) {
ege_adjustment_action_defocus( act );
}
}