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

@ -180,7 +180,7 @@ gtk_toggle_action_new (const gchar *name,
"name", name,
"label", label,
"tooltip", tooltip,
"stock_id", stock_id,
"stock-id", stock_id,
NULL);
return action;
@ -380,7 +380,7 @@ gtk_toggle_action_set_draw_as_radio (GtkToggleAction *action,
{
action->private_data->draw_as_radio = draw_as_radio;
g_object_notify (G_OBJECT (action), "draw_as_radio");
g_object_notify (G_OBJECT (action), "draw-as-radio");
}
}
@ -408,7 +408,7 @@ create_menu_item (GtkAction *action)
GtkToggleAction *toggle_action = GTK_TOGGLE_ACTION (action);
return g_object_new (GTK_TYPE_CHECK_MENU_ITEM,
"draw_as_radio", toggle_action->private_data->draw_as_radio,
"draw-as-radio", toggle_action->private_data->draw_as_radio,
NULL);
}