diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-26 05:49:15 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-26 05:49:15 +0000 |
commit | 4c28ce0877e5749d9d930304397995535190a168 (patch) | |
tree | 53429d9310a84cc9825774d9ae6808a8963c6e30 /gtk/gtktoolitem.c | |
parent | 6323876b413c591edb1779fd5897066d6a4983f5 (diff) | |
download | gtk+-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/gtktoolitem.c')
-rw-r--r-- | gtk/gtktoolitem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtktoolitem.c b/gtk/gtktoolitem.c index 1dede85af1..c2fcf4fff3 100644 --- a/gtk/gtktoolitem.c +++ b/gtk/gtktoolitem.c @@ -788,7 +788,7 @@ gtk_tool_item_set_is_important (GtkToolItem *tool_item, gboolean is_important) gtk_widget_queue_resize (GTK_WIDGET (tool_item)); - g_object_notify (G_OBJECT (tool_item), "is_important"); + g_object_notify (G_OBJECT (tool_item), "is-important"); } } @@ -915,7 +915,7 @@ gtk_tool_item_set_visible_horizontal (GtkToolItem *toolitem, { toolitem->priv->visible_horizontal = visible_horizontal; - g_object_notify (G_OBJECT (toolitem), "visible_horizontal"); + g_object_notify (G_OBJECT (toolitem), "visible-horizontal"); gtk_widget_queue_resize (GTK_WIDGET (toolitem)); } @@ -966,7 +966,7 @@ gtk_tool_item_set_visible_vertical (GtkToolItem *toolitem, { toolitem->priv->visible_vertical = visible_vertical; - g_object_notify (G_OBJECT (toolitem), "visible_vertical"); + g_object_notify (G_OBJECT (toolitem), "visible-vertical"); gtk_widget_queue_resize (GTK_WIDGET (toolitem)); } |