diff options
author | John (J5) Palmieri <johnp@redhat.com> | 2010-09-06 22:55:03 -0400 |
---|---|---|
committer | John (J5) Palmieri <johnp@redhat.com> | 2010-09-07 10:41:40 -0400 |
commit | 8a210673fb6f05abaa4ea05b7dcd17b06c7aca68 (patch) | |
tree | 8289e757b8145a2725d3af62466ade5237e1c482 /gtk/gtkradiobutton.h | |
parent | 278957a5a40cbb27750000f709cb8b53d2aa9885 (diff) | |
download | gtk+-8a210673fb6f05abaa4ea05b7dcd17b06c7aca68.tar.gz |
add gtk_radio_button_join_group method for bindings
* this mirrors the committed change for gtk_radio_action_join_group in
commit 85b53969b24d318b219663841e678943516f443a
* Due to object ownership issues it is impossible to correctly use
get_group/set_group from a GI binding
* join_group is safer because at the binding level it works with individual
GtkRadioButton objects and not with the list of objects that gets
modified in the library
https://bugzilla.gnome.org/show_bug.cgi?id=628935
Diffstat (limited to 'gtk/gtkradiobutton.h')
-rw-r--r-- | gtk/gtkradiobutton.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtkradiobutton.h b/gtk/gtkradiobutton.h index 84e7042821..20f91cfcdf 100644 --- a/gtk/gtkradiobutton.h +++ b/gtk/gtkradiobutton.h @@ -86,7 +86,8 @@ GtkWidget* gtk_radio_button_new_with_mnemonic_from_widget (GtkRadioButton *radio GSList* gtk_radio_button_get_group (GtkRadioButton *radio_button); void gtk_radio_button_set_group (GtkRadioButton *radio_button, GSList *group); - +void gtk_radio_button_join_group (GtkRadioButton *radio_button, + GtkRadioButton *group_source); G_END_DECLS #endif /* __GTK_RADIO_BUTTON_H__ */ |