diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-0 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-2 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 4 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 4 | ||||
-rw-r--r-- | tests/testgtk.c | 4 |
8 files changed, 30 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 36d665706..0e249547a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,9 @@ 2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: hm, check buttons look better for below. + +2002-02-16 Manish Singh <yosh@gimp.org> + * tests/testgtk.c: redid the filesel test. Added a way to set select multiple as a toggle button, and made show/hide fileops toggle buttons as well. get_selections() is called on OK and all the diff --git a/tests/testgtk.c b/tests/testgtk.c index 87524256a..7bc2a4710 100644 --- a/tests/testgtk.c +++ b/tests/testgtk.c @@ -6533,7 +6533,7 @@ create_file_selection (void) G_CALLBACK (gtk_widget_destroy), window); - button = gtk_toggle_button_new_with_label ("Show Fileops"); + button = gtk_check_button_new_with_label ("Show Fileops"); g_signal_connect (button, "toggled", G_CALLBACK (show_fileops), window); @@ -6541,7 +6541,7 @@ create_file_selection (void) button, FALSE, FALSE, 0); gtk_widget_show (button); - button = gtk_toggle_button_new_with_label ("Select Multiple"); + button = gtk_check_button_new_with_label ("Select Multiple"); g_signal_connect (button, "clicked", G_CALLBACK (select_multiple), window); |