summaryrefslogtreecommitdiff
path: root/gtk/gtkcombobox.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2005-03-26 05:49:15 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2005-03-26 05:49:15 +0000
commit4c28ce0877e5749d9d930304397995535190a168 (patch)
tree53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtkcombobox.c
parent6323876b413c591edb1779fd5897066d6a4983f5 (diff)
downloadgdk-pixbuf-4c28ce0877e5749d9d930304397995535190a168.tar.gz
Use canonical names for g_object_notify() as well.
2005-03-26 Matthias Clasen <mclasen@redhat.com> * gtk/*.c: * gdk/gdkdisplaymanager.c: Use canonical names for g_object_notify() as well.
Diffstat (limited to 'gtk/gtkcombobox.c')
-rw-r--r--gtk/gtkcombobox.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c
index 7969c6442..8fd4a7780 100644
--- a/gtk/gtkcombobox.c
+++ b/gtk/gtkcombobox.c
@@ -2598,10 +2598,10 @@ menu_occupied (GtkMenu *menu,
gtk_container_child_get (GTK_CONTAINER (menu),
i->data,
- "left_attach", &l,
- "right_attach", &r,
- "bottom_attach", &b,
- "top_attach", &t,
+ "left-attach", &l,
+ "right-attach", &r,
+ "bottom-attach", &b,
+ "top-attach", &t,
NULL);
/* look if this item intersects with the given coordinates */
@@ -3129,10 +3129,10 @@ gtk_combo_box_menu_row_changed (GtkTreeModel *model,
move it */
gtk_container_child_set (GTK_CONTAINER (combo_box->priv->popup_widget),
item,
- "left_attach", -1,
- "right_attach", -1,
- "top_attach", -1,
- "bottom_attach", -1,
+ "left-attach", -1,
+ "right-attach", -1,
+ "top-attach", -1,
+ "bottom-attach", -1,
NULL);
gtk_combo_box_relayout_item (combo_box, item, iter, pitem);
@@ -3307,7 +3307,7 @@ gtk_combo_box_list_destroy (GtkComboBox *combo_box)
if (combo_box->priv->cell_view)
{
g_object_set (combo_box->priv->cell_view,
- "background_set", FALSE,
+ "background-set", FALSE,
NULL);
}
@@ -4208,7 +4208,7 @@ gtk_combo_box_set_wrap_width (GtkComboBox *combo_box,
gtk_combo_box_check_appearance (combo_box);
gtk_combo_box_relayout (combo_box);
- g_object_notify (G_OBJECT (combo_box), "wrap_width");
+ g_object_notify (G_OBJECT (combo_box), "wrap-width");
}
}
@@ -4258,7 +4258,7 @@ gtk_combo_box_set_row_span_column (GtkComboBox *combo_box,
gtk_combo_box_relayout (combo_box);
- g_object_notify (G_OBJECT (combo_box), "row_span_column");
+ g_object_notify (G_OBJECT (combo_box), "row-span-column");
}
}
@@ -4308,7 +4308,7 @@ gtk_combo_box_set_column_span_column (GtkComboBox *combo_box,
gtk_combo_box_relayout (combo_box);
- g_object_notify (G_OBJECT (combo_box), "column_span_column");
+ g_object_notify (G_OBJECT (combo_box), "column-span-column");
}
}
@@ -4996,7 +4996,7 @@ gtk_combo_box_set_add_tearoffs (GtkComboBox *combo_box,
combo_box->priv->add_tearoffs = add_tearoffs;
gtk_combo_box_check_appearance (combo_box);
gtk_combo_box_relayout (combo_box);
- g_object_notify (G_OBJECT (combo_box), "add_tearoffs");
+ g_object_notify (G_OBJECT (combo_box), "add-tearoffs");
}
}
@@ -5118,7 +5118,7 @@ gtk_combo_box_set_focus_on_click (GtkComboBox *combo,
{
combo->priv->focus_on_click = focus_on_click;
- g_object_notify (G_OBJECT (combo), "focus_on_click");
+ g_object_notify (G_OBJECT (combo), "focus-on-click");
}
}