diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2003-09-04 00:49:37 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-09-04 00:49:37 +0000 |
commit | 0a163c7fd7aa6c75c1e4bfb7201380399ad8a750 (patch) | |
tree | 801e000c0841ff0bcb6f816077e868237a5efcd4 /gtk/gtkactiongroup.c | |
parent | e4dbc17a655dbc77bd431322e17d6e7cd4b1a9fb (diff) | |
download | gtk+-0a163c7fd7aa6c75c1e4bfb7201380399ad8a750.tar.gz |
Doc tweaks.
Diffstat (limited to 'gtk/gtkactiongroup.c')
-rw-r--r-- | gtk/gtkactiongroup.c | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c index 92b97995b7..8e35839ecd 100644 --- a/gtk/gtkactiongroup.c +++ b/gtk/gtkactiongroup.c @@ -205,7 +205,7 @@ gtk_action_group_get_action (GtkActionGroup *action_group, * @action_group: the action group * @action: an action * - * Adds an action object to the action group. + * Adds an action object to the action group. * * Since: 2.4 */ @@ -223,7 +223,7 @@ gtk_action_group_add_action (GtkActionGroup *action_group, } /** - * gtk_action_group_removes_action: + * gtk_action_group_remove_action: * @action_group: the action group * @action: an action * @@ -284,9 +284,12 @@ gtk_action_group_list_actions (GtkActionGroup *action_group) * @n_entries: the number of entries * @user_data: data to pass to the action callbacks * - * This is a convenience routine to create a number of actions and add - * them to the action group. Each member of the array describes an - * action to create. + * This is a convenience function to create a number of actions and add them to the + * action group. + * + * The "activate" signals of the actions are connected to the callbacks and + * their accel paths are set to + * <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>. * * Since: 2.4 */ @@ -397,9 +400,12 @@ gtk_action_group_add_actions_full (GtkActionGroup *action_group, * @on_change: the callback to connect to the changed signal * @user_data: data to pass to the action callbacks * - * This is a convenience routine to create a group of radio actions and - * add them to the action group. Each member of the array describes a - * radio action to create. + * This is a convenience routine to create a group of radio actions and + * add them to the action group. + * + * The"changed" signal of the first radio action is connected to the @on_change + * callback and the accel paths of the actions are set to + * <literal><Actions>/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal>. * * Since: 2.4 **/ |