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.
This commit is contained in:
Matthias Clasen
2005-03-26 05:49:15 +00:00
committed by Matthias Clasen
parent 6323876b41
commit 4c28ce0877
87 changed files with 465 additions and 443 deletions

View File

@ -403,7 +403,7 @@ gtk_message_dialog_new (GtkWindow *parent,
g_return_val_if_fail (parent == NULL || GTK_IS_WINDOW (parent), NULL);
widget = g_object_new (GTK_TYPE_MESSAGE_DIALOG,
"message_type", type,
"message-type", type,
"buttons", buttons,
NULL);
dialog = GTK_DIALOG (widget);
@ -712,7 +712,7 @@ gtk_message_dialog_style_set (GtkWidget *widget,
if (parent)
{
gtk_widget_style_get (widget, "message_border",
gtk_widget_style_get (widget, "message-border",
&border_width, NULL);
gtk_container_set_border_width (GTK_CONTAINER (parent),
@ -720,7 +720,7 @@ gtk_message_dialog_style_set (GtkWidget *widget,
}
gtk_widget_style_get (widget,
"use_separator", &use_separator,
"use-separator", &use_separator,
NULL);
_gtk_dialog_set_ignore_separator (GTK_DIALOG (widget), FALSE);
gtk_dialog_set_has_separator (GTK_DIALOG (widget), use_separator);