Forgot to actually commit this file

This commit is contained in:
Søren Sandmann Pedersen 2003-08-29 19:28:44 +00:00
parent ce00fa8982
commit 9542740711

View File

@ -425,7 +425,6 @@ gtk_action_group_add_radio_actions_full (GtkActionGroup *action_group,
guint i;
GtkTranslateFunc translate_func;
gpointer translate_data;
GtkRadioAction *radio_action;
g_return_if_fail (GTK_IS_ACTION_GROUP (action_group));
@ -460,16 +459,14 @@ gtk_action_group_add_radio_actions_full (GtkActionGroup *action_group,
if (i == 0)
{
radio_action = GTK_RADIO_ACTION (action);
if (on_change)
g_signal_connect_data (radio_action, "changed",
g_signal_connect_data (action, "changed",
on_change, user_data,
(GClosureNotify)destroy, 0);
}
else
{
GSList *group = gtk_radio_action_get_group (radio_action);
GSList *group = gtk_radio_action_get_group (GTK_RADIO_ACTION (action));
gtk_radio_action_set_group (GTK_RADIO_ACTION (action), group);
}