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/gtkhandlebox.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/gtkhandlebox.c')
-rw-r--r-- | gtk/gtkhandlebox.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtkhandlebox.c b/gtk/gtkhandlebox.c index 63bf94a507..f8c4e899aa 100644 --- a/gtk/gtkhandlebox.c +++ b/gtk/gtkhandlebox.c @@ -808,7 +808,7 @@ gtk_handle_box_set_shadow_type (GtkHandleBox *handle_box, if ((GtkShadowType) handle_box->shadow_type != type) { handle_box->shadow_type = type; - g_object_notify (G_OBJECT (handle_box), "shadow_type"); + g_object_notify (G_OBJECT (handle_box), "shadow-type"); gtk_widget_queue_resize (GTK_WIDGET (handle_box)); } } @@ -839,7 +839,7 @@ gtk_handle_box_set_handle_position (GtkHandleBox *handle_box, if ((GtkPositionType) handle_box->handle_position != position) { handle_box->handle_position = position; - g_object_notify (G_OBJECT (handle_box), "handle_position"); + g_object_notify (G_OBJECT (handle_box), "handle-position"); gtk_widget_queue_resize (GTK_WIDGET (handle_box)); } } @@ -872,8 +872,8 @@ gtk_handle_box_set_snap_edge (GtkHandleBox *handle_box, handle_box->snap_edge = edge; g_object_freeze_notify (G_OBJECT (handle_box)); - g_object_notify (G_OBJECT (handle_box), "snap_edge"); - g_object_notify (G_OBJECT (handle_box), "snap_edge_set"); + g_object_notify (G_OBJECT (handle_box), "snap-edge"); + g_object_notify (G_OBJECT (handle_box), "snap-edge-set"); g_object_thaw_notify (G_OBJECT (handle_box)); } } |