diff --git a/ChangeLog b/ChangeLog index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 7fc2f3c3f5..f1d8824bc5 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +Mon Aug 27 22:00:41 2001 Manish Singh + + * gtk/gtkradiobutton.c: fix silly cut'n'paste error, + with_label and with_mnemonic should create radio buttons, not + check buttons + Mon Aug 27 15:28:56 2001 Jonathan Blandford * tests/testtreefocus.c (main): Fix to use GtkSelectionMode. diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c index 070c1adeb5..8d9ed1e487 100644 --- a/gtk/gtkradiobutton.c +++ b/gtk/gtkradiobutton.c @@ -217,7 +217,7 @@ gtk_radio_button_new_with_label (GSList *group, { GtkWidget *radio_button; - radio_button = g_object_new (GTK_TYPE_CHECK_BUTTON, "label", label, NULL) ; + radio_button = g_object_new (GTK_TYPE_RADIO_BUTTON, "label", label, NULL) ; if (group) gtk_radio_button_set_group (radio_button, group); @@ -243,7 +243,7 @@ gtk_radio_button_new_with_mnemonic (GSList *group, { GtkWidget *radio_button; - radio_button = g_object_new (GTK_TYPE_CHECK_BUTTON, "label", label, "use_underline", TRUE, NULL); + radio_button = g_object_new (GTK_TYPE_RADIO_BUTTON, "label", label, "use_underline", TRUE, NULL); if (group) gtk_radio_button_set_group (radio_button, group);