Doc addition.

* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
This commit is contained in:
Matthias Clasen 2003-09-01 23:45:54 +00:00
parent 7899a702ee
commit 2ece92c8f3
8 changed files with 16 additions and 4 deletions

View File

@ -1,5 +1,7 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
* gtk/gtkuimanager.c: Shorten the names of some static
functions.

View File

@ -1,5 +1,7 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
* gtk/gtkuimanager.c: Shorten the names of some static
functions.

View File

@ -1,5 +1,7 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
* gtk/gtkuimanager.c: Shorten the names of some static
functions.

View File

@ -1,5 +1,7 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
* gtk/gtkuimanager.c: Shorten the names of some static
functions.

View File

@ -1,5 +1,7 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition.
* gtk/gtkuimanager.c: Shorten the names of some static
functions.

View File

@ -1,6 +1,6 @@
2003-09-02 Matthias Clasen <maclas@gmx.de>
* gtk/tmpl/gtkactiongroup.sgml:
* gtk/tmpl/gtkactiongroup.sgml:
* gtk/tmpl/gtkuimanager.sgml: Additions.
* gtk/gtk-sections.txt: Add gtk_ui_manager_new_merge_id and

View File

@ -19,7 +19,7 @@ that can edit multiple documents, one group holding global actions
act on that document (eg. save, cut/copy/paste, etc). Each window's menus
would be constructed from a combination of two action groups.
</para>
<para>
<para id="Action-Accel">
Accelerators are handled by the GTK+ accelerator map. All actions are
assigned an accelerator path of the form
<literal>&lt;Actions&gt;/<replaceable>group-name</replaceable>/<replaceable>action-name</replaceable></literal> when they are added to an action group,

View File

@ -112,9 +112,11 @@ gtk_action_group_init (GtkActionGroup *self)
/**
* gtk_action_group_new:
* @name: the name of the action group
* @name: the name of the action group.
*
* Creates a new #GtkActionGroup object.
* Creates a new #GtkActionGroup object. The name of the action group
* is used when associating <link linkend="Action-Accel">keybindings</link>
* with the actions.
*
* Returns: the new #GtkActionGroup
*