]> Pileus Git - ~andy/gtk/commitdiff
fix silly cut'n'paste error, with_label and with_mnemonic should create
authorManish Singh <yosh@gimp.org>
Tue, 28 Aug 2001 05:05:53 +0000 (05:05 +0000)
committerManish Singh <yosh@src.gnome.org>
Tue, 28 Aug 2001 05:05:53 +0000 (05:05 +0000)
Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>

        * gtk/gtkradiobutton.c: fix silly cut'n'paste error,
        with_label and with_mnemonic should create radio buttons, not
        check buttons

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkradiobutton.c

index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 7fc2f3c3f5004551d3099bb752e3bb5a5f0d747c..f1d8824bc5c1f91c8a1b868910c2071db1f49fcc 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug 27 22:00:41 2001 Manish Singh <yosh@gimp.org>
+
+       * 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  <jrb@redhat.com>
 
        * tests/testtreefocus.c (main): Fix to use GtkSelectionMode.
index 070c1adeb54fcc6f082310110e0610ad4df2ae35..8d9ed1e487b61da14b54cd449ef25df04a328b45 100644 (file)
@@ -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);