Fix incorrect usage of gtk_radio_button_new_with_label()/gtk_radio_button_get_group();
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 2 Jul 2011 21:00:56 +0000 (21:00 +0000)
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Sat, 2 Jul 2011 21:00:56 +0000 (21:00 +0000)
commit8035f2cbee6f582e22c5df7323dbfc3178f8404c
treeb63947c4e1fb1216c57260ad6d1f81a6404e5b90
parent7b539ab81778fdfdc0f31bdf1e7c4d6e68e07272
Fix incorrect usage of gtk_radio_button_new_with_label()/gtk_radio_button_get_group();
Use gtk_radio_button_new_with_label_from_widget().

Essentially: gtk_radio_button_get_group() must be called after each gtk_radio_button_new...()
before using the 'group' GSList pointer in another call to gtk_radio_button_new...().

In these cases the incorrect usage appears to only have resulted in allowing multiple
radio buttons to be activated simultaneously.

(In at least one case elsewhere, the incorrect usage resulted in a Wireshark crash).

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37869 f5534014-38df-0310-8fa8-9805f1628bb7
gtk/iax2_analysis.c