diff --git a/ChangeLog b/ChangeLog index e617c58e0c..b498a336e5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2003-09-02 Matthias Clasen + * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition. + * gtk/gtkuimanager.c: Shorten the names of some static functions. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index e617c58e0c..b498a336e5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,7 @@ 2003-09-02 Matthias Clasen + * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition. + * gtk/gtkuimanager.c: Shorten the names of some static functions. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index e617c58e0c..b498a336e5 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,7 @@ 2003-09-02 Matthias Clasen + * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition. + * gtk/gtkuimanager.c: Shorten the names of some static functions. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index e617c58e0c..b498a336e5 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,7 @@ 2003-09-02 Matthias Clasen + * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition. + * gtk/gtkuimanager.c: Shorten the names of some static functions. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index e617c58e0c..b498a336e5 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,7 @@ 2003-09-02 Matthias Clasen + * gtk/gtkactiongroup.c (gtk_action_group_new): Doc addition. + * gtk/gtkuimanager.c: Shorten the names of some static functions. diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 3eb5fcda3d..d77fbddb43 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,6 +1,6 @@ 2003-09-02 Matthias Clasen - * 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 diff --git a/docs/reference/gtk/tmpl/gtkactiongroup.sgml b/docs/reference/gtk/tmpl/gtkactiongroup.sgml index da03365b6e..ff4f621739 100644 --- a/docs/reference/gtk/tmpl/gtkactiongroup.sgml +++ b/docs/reference/gtk/tmpl/gtkactiongroup.sgml @@ -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. - + Accelerators are handled by the GTK+ accelerator map. All actions are assigned an accelerator path of the form <Actions>/group-name/action-name when they are added to an action group, diff --git a/gtk/gtkactiongroup.c b/gtk/gtkactiongroup.c index 8d59dc592a..92b97995b7 100644 --- a/gtk/gtkactiongroup.c +++ b/gtk/gtkactiongroup.c @@ -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 keybindings + * with the actions. * * Returns: the new #GtkActionGroup *