Joins a #GtkRadioMenuItem object to the group of another #GtkRadioMenuItem
object.
This function should be used by language bindings to avoid the memory
manangement of the opaque #GSList of gtk_radio_menu_item_get_group()
and gtk_radio_menu_item_set_group().
A common way to set up a group of #GtkRadioMenuItem instances is:
|[
GtkRadioMenuItem *last_item = NULL;
while ( ...more items to add... )
{
GtkRadioMenuItem *radio_item;
Joins a #GtkRadioMenuItem object to the group of another #GtkRadioMenuItem object.
This function should be used by language bindings to avoid the memory manangement of the opaque #GSList of gtk_radio_menu_item_get_group() and gtk_radio_menu_item_set_group().
A common way to set up a group of #GtkRadioMenuItem instances is:
|[ GtkRadioMenuItem *last_item = NULL;
while ( ...more items to add... ) { GtkRadioMenuItem *radio_item;
radio_item = gtk_radio_menu_item_new (...);
gtk_radio_menu_item_join_group (radio_item, last_item); last_item = radio_item; } ]|