diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index dc6cf43426..9ba3ee2f68 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,9 @@ +2002-12-16 Matthias Clasen + + * gtk/tmpl/gtkradiomenuitem.sgml: + * gtk/tmpl/gtkradiobutton.sgml: Add some information about group + list handling. (#101328, James M. Cape) + 2002-12-14 Eric Warmenhoven * gtk/framebuffer.sgml: Minor updates for 2.2.0. (#67820) diff --git a/docs/reference/gtk/tmpl/gtkradiobutton.sgml b/docs/reference/gtk/tmpl/gtkradiobutton.sgml index 6ca8c201e3..982e5ed31c 100644 --- a/docs/reference/gtk/tmpl/gtkradiobutton.sgml +++ b/docs/reference/gtk/tmpl/gtkradiobutton.sgml @@ -36,6 +36,10 @@ gtk_radio_button_get_group(). To remove a #GtkRadioButton from one group and make it part of a new one, use gtk_radio_button_set_group(). +The group list does not need to be freed, as each #GtkRadioButton will remove +itself and its list item when it is destroyed. + + How to create a group of two radio buttons. diff --git a/docs/reference/gtk/tmpl/gtkradiomenuitem.sgml b/docs/reference/gtk/tmpl/gtkradiomenuitem.sgml index fe0491dbc9..a1b5b6c8a6 100644 --- a/docs/reference/gtk/tmpl/gtkradiomenuitem.sgml +++ b/docs/reference/gtk/tmpl/gtkradiomenuitem.sgml @@ -10,7 +10,11 @@ A radio menu item is a check menu item that belongs to a group. At each instant exactly one of the radio menu items from a group is selected. -The correct way to create a group of radio menu items is aproximativly +The group list does not need to be freed, as each #GtkRadioMenuItem will +remove itself and its list item when it is destroyed. + + +The correct way to create a group of radio menu items is approximatively this: