summaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ege-adjustment-action.cpp2
-rw-r--r--src/ege-output-action.cpp2
-rw-r--r--src/ege-select-one-action.cpp4
-rw-r--r--src/interface.cpp4
4 files changed, 6 insertions, 6 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);
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 );
diff --git a/src/ege-select-one-action.cpp b/src/ege-select-one-action.cpp
index 184d1afb4..3facf7242 100644
--- a/src/ege-select-one-action.cpp
+++ b/src/ege-select-one-action.cpp
@@ -866,7 +866,7 @@ void resync_active( EgeSelectOneAction* act, gint active, gboolean override )
} else if ( gtk_combo_box_get_active(combo) != active ) {
gtk_combo_box_set_active( combo, active );
}
- } else if ( GTK_IS_HBOX(children->data) ) {
+ } else if ( GTK_IS_BOX(children->data) ) {
gpointer data = g_object_get_data( G_OBJECT(children->data), "ege-proxy_action-group" );
if ( data ) {
GSList* group = (GSList*)data;
@@ -921,7 +921,7 @@ void resync_sensitive( EgeSelectOneAction* act )
}
if ( GTK_IS_COMBO_BOX(combodata) ) {
/* Not implemented */
- } else if ( GTK_IS_HBOX(children->data) ) {
+ } else if ( GTK_IS_BOX(children->data) ) {
gpointer data = g_object_get_data( G_OBJECT(children->data), "ege-proxy_action-group" );
if ( data ) {
GSList* group = (GSList*)data;
diff --git a/src/interface.cpp b/src/interface.cpp
index 881dbbc0c..bdbedd311 100644
--- a/src/interface.cpp
+++ b/src/interface.cpp
@@ -1418,13 +1418,13 @@ sp_ui_menu_item_set_name(GtkWidget *data, Glib::ustring const &name)
if (data || GTK_IS_BIN (data)) {
void *child = gtk_bin_get_child (GTK_BIN (data));
//child is either
- //- a GtkHBox, whose first child is a label displaying name if the menu
+ //- a GtkBox, whose first child is a label displaying name if the menu
//item has an accel key
//- a GtkLabel if the menu has no accel key
if (child != NULL){
if (GTK_IS_LABEL(child)) {
gtk_label_set_markup_with_mnemonic(GTK_LABEL (child), name.c_str());
- } else if (GTK_IS_HBOX(child)) {
+ } else if (GTK_IS_BOX(child)) {
gtk_label_set_markup_with_mnemonic(
GTK_LABEL (gtk_container_get_children(GTK_CONTAINER (child))->data),
name.c_str());