summaryrefslogtreecommitdiffstats
path: root/src/ege-adjustment-action.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2014-01-03 10:33:30 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2014-01-03 10:33:30 +0000
commit25bea5005bdd07e3807c04ce7942786571344ac2 (patch)
treeecca5d707b9e861aab0be8a51159e053e9773221 /src/ege-adjustment-action.cpp
parentfix pointer initialization ( "0" --> "NULL") (diff)
downloadinkscape-25bea5005bdd07e3807c04ce7942786571344ac2.tar.gz
inkscape-25bea5005bdd07e3807c04ce7942786571344ac2.zip
Stop using GTK_IS_HBOX: Deprecated in Gtk+ 3
(bzr r12872)
Diffstat (limited to 'src/ege-adjustment-action.cpp')
-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 7e92c1bec..9491468dc 100644
--- a/src/ege-adjustment-action.cpp
+++ b/src/ege-adjustment-action.cpp
@@ -983,7 +983,7 @@ static gboolean process_tab( GtkWidget* widget, int direction )
if ( mid && GTK_IS_TOOL_ITEM(mid->data) ) {
/* potential target */
GtkWidget* child = gtk_bin_get_child( GTK_BIN(mid->data) );
- if ( child && GTK_IS_HBOX(child) ) { /* could be ours */
+ if ( child && GTK_IS_BOX(child) ) { /* could be ours */
GList* subChildren = gtk_container_get_children( GTK_CONTAINER(child) );
if ( subChildren ) {
GList* last = g_list_last(subChildren);