]> Pileus Git - ~andy/gtk/commitdiff
Add some information about group list handling. (#101328, James M. Cape)
authorMatthias Clasen <maclas@gmx.de>
Mon, 16 Dec 2002 22:46:30 +0000 (22:46 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 16 Dec 2002 22:46:30 +0000 (22:46 +0000)
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)

docs/reference/ChangeLog
docs/reference/gtk/tmpl/gtkradiobutton.sgml
docs/reference/gtk/tmpl/gtkradiomenuitem.sgml

index dc6cf434265b445512499807204a1dfefa66fe89..9ba3ee2f68d169230fea6e9b3678e2e895cb2c02 100644 (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)
index 6ca8c201e36993882dd02a4c132d66b6fe5c2039..982e5ed31c71e62334bfd55263ebd8071b772eb5 100644 (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>
index fe0491dbc9ee1441b3ed139f90f5cd9edb1be837..a1b5b6c8a6585c18c7befaa26b6606741933d49c 100644 (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>