From b5796771d21919ec8701d14c6d1d086e6f61f593 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Mon, 11 Aug 2008 13:07:18 +0000 Subject: gtk/gtkaccelgroup.c gtk/gtkactiongroup.c gtk/gtkcalendar.c 2008-08-11 Sven Neumann * gtk/gtkaccelgroup.c * gtk/gtkactiongroup.c * gtk/gtkcalendar.c * gtk/gtkcelleditable.c * gtk/gtkclipboard-quartz.c * gtk/gtkclipboard.c * gtk/gtkcolorbutton.c * gtk/gtkcolorsel.c * gtk/gtkcontainer.c * gtk/gtkcurve.c: use canonical signal names. svn path=/trunk/; revision=21068 --- gtk/gtkactiongroup.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'gtk/gtkactiongroup.c') diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c index 7a23c26c53..c8deeaf07a 100644 --- a/gtk/gtkactiongroup.c +++ b/gtk/gtkactiongroup.c @@ -192,7 +192,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * @action: the action * @proxy: the proxy * - * The connect_proxy signal is emitted after connecting a proxy to + * The ::connect-proxy signal is emitted after connecting a proxy to * an action in the group. Note that the proxy may have been connected * to a different action before. * @@ -207,7 +207,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * Since: 2.4 */ action_group_signals[CONNECT_PROXY] = - g_signal_new (I_("connect_proxy"), + g_signal_new (I_("connect-proxy"), G_OBJECT_CLASS_TYPE (klass), 0, 0, NULL, NULL, _gtk_marshal_VOID__OBJECT_OBJECT, @@ -220,7 +220,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * @action: the action * @proxy: the proxy * - * The disconnect_proxy signal is emitted after disconnecting a proxy + * The ::disconnect-proxy signal is emitted after disconnecting a proxy * from an action in the group. * * #GtkUIManager proxies the signal and provides global notification @@ -230,7 +230,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * Since: 2.4 */ action_group_signals[DISCONNECT_PROXY] = - g_signal_new (I_("disconnect_proxy"), + g_signal_new (I_("disconnect-proxy"), G_OBJECT_CLASS_TYPE (klass), 0, 0, NULL, NULL, _gtk_marshal_VOID__OBJECT_OBJECT, @@ -242,7 +242,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * @action_group: the group * @action: the action * - * The pre_activate signal is emitted just before the @action in the + * The ::pre-activate signal is emitted just before the @action in the * @action_group is activated * * This is intended for #GtkUIManager to proxy the signal and provide global @@ -251,7 +251,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * Since: 2.4 */ action_group_signals[PRE_ACTIVATE] = - g_signal_new (I_("pre_activate"), + g_signal_new (I_("pre-activate"), G_OBJECT_CLASS_TYPE (klass), 0, 0, NULL, NULL, _gtk_marshal_VOID__OBJECT, @@ -263,7 +263,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * @action_group: the group * @action: the action * - * The post_activate signal is emitted just after the @action in the + * The ::post-activate signal is emitted just after the @action in the * @action_group is activated * * This is intended for #GtkUIManager to proxy the signal and provide global @@ -272,7 +272,7 @@ gtk_action_group_class_init (GtkActionGroupClass *klass) * Since: 2.4 */ action_group_signals[POST_ACTIVATE] = - g_signal_new (I_("post_activate"), + g_signal_new (I_("post-activate"), G_OBJECT_CLASS_TYPE (klass), 0, 0, NULL, NULL, _gtk_marshal_VOID__OBJECT, -- cgit v1.2.1