Add some information about group list handling. (#101328, James M. Cape)

2002-12-16  Matthias Clasen  <maclas@gmx.de>

	* gtk/tmpl/gtkradiomenuitem.sgml:
	* gtk/tmpl/gtkradiobutton.sgml: Add some information about group
	list handling.  (#101328, James M. Cape)
This commit is contained in:
Matthias Clasen 2002-12-16 22:46:30 +00:00 committed by Matthias Clasen
parent 1a1b91e840
commit 47de18549a
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2002-12-16 Matthias Clasen <maclas@gmx.de>
* gtk/tmpl/gtkradiomenuitem.sgml:
* gtk/tmpl/gtkradiobutton.sgml: Add some information about group
list handling. (#101328, James M. Cape)
2002-12-14 Eric Warmenhoven <eric@warmenhoven.org>
* gtk/framebuffer.sgml: Minor updates for 2.2.0. (#67820)

View File

@ -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().
</para>
<para>
The group list does not need to be freed, as each #GtkRadioButton will remove
itself and its list item when it is destroyed.
</para>
<para>
<example>
<title>How to create a group of two radio buttons.</title>
<programlisting>

View File

@ -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.
</para>
<para>
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.
</para>
<para>
The correct way to create a group of radio menu items is approximatively
this:
</para>
<example>