After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 628935 - add gtk_radio_button_join_group method for bindings
add gtk_radio_button_join_group method for bindings
Status: RESOLVED FIXED
Product: gtk+
Classification: Platform
Component: Widget: Other
unspecified
Other All
: Normal normal
: 3.0
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2010-09-07 03:03 UTC by johnp
Modified: 2010-09-10 18:05 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
add gtk_radio_button_join_group method for bindings (2.70 KB, patch)
2010-09-07 03:03 UTC, johnp
none Details | Review
add gtk_radio_button_join_group method for bindings (3.52 KB, patch)
2010-09-07 03:25 UTC, johnp
none Details | Review

Description johnp 2010-09-07 03:03:13 UTC
* 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
Comment 1 johnp 2010-09-07 03:03:15 UTC
Created attachment 169639 [details] [review]
add gtk_radio_button_join_group method for bindings
Comment 2 johnp 2010-09-07 03:25:23 UTC
Created attachment 169643 [details] [review]
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