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/gtkdialog.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/gtkdialog.c')
-rw-r--r-- | gtk/gtkdialog.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/gtk/gtkdialog.c b/gtk/gtkdialog.c index bd80552acb..d20867a411 100644 --- a/gtk/gtkdialog.c +++ b/gtk/gtkdialog.c @@ -213,12 +213,9 @@ update_spacings (GtkDialog *dialog) widget = GTK_WIDGET (dialog); gtk_widget_style_get (widget, - "content_area_border", - &content_area_border, - "button_spacing", - &button_spacing, - "action_area_border", - &action_area_border, + "content-area-border", &content_area_border, + "button-spacing", &button_spacing, + "action-area-border", &action_area_border, NULL); gtk_container_set_border_width (GTK_CONTAINER (dialog->vbox), @@ -823,7 +820,7 @@ gtk_dialog_set_has_separator (GtkDialog *dialog, dialog->separator = NULL; } - g_object_notify (G_OBJECT (dialog), "has_separator"); + g_object_notify (G_OBJECT (dialog), "has-separator"); } /** |