diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2014-01-03 10:33:30 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2014-01-03 10:33:30 +0000 |
| commit | 25bea5005bdd07e3807c04ce7942786571344ac2 (patch) | |
| tree | ecca5d707b9e861aab0be8a51159e053e9773221 /src/ege-output-action.cpp | |
| parent | fix pointer initialization ( "0" --> "NULL") (diff) | |
| download | inkscape-25bea5005bdd07e3807c04ce7942786571344ac2.tar.gz inkscape-25bea5005bdd07e3807c04ce7942786571344ac2.zip | |
Stop using GTK_IS_HBOX: Deprecated in Gtk+ 3
(bzr r12872)
Diffstat (limited to 'src/ege-output-action.cpp')
| -rw-r--r-- | src/ege-output-action.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ege-output-action.cpp b/src/ege-output-action.cpp index 214bd4b29..9a7d7e318 100644 --- a/src/ege-output-action.cpp +++ b/src/ege-output-action.cpp @@ -221,7 +221,7 @@ void fixup_labels( GObject *gobject, GParamSpec *arg1, gpointer user_data ) /* Search for the things we built up in create_tool_item() */ GList* children = gtk_container_get_children( GTK_CONTAINER(proxies->data) ); if ( children && children->data ) { - if ( GTK_IS_HBOX(children->data) ) { + if ( GTK_IS_BOX(children->data) ) { children = gtk_container_get_children( GTK_CONTAINER(children->data) ); if ( children && g_list_next(children) ) { GtkWidget* child = GTK_WIDGET( g_list_next(children)->data ); |
