diff options
-rw-r--r-- | widgets/misc/ChangeLog | 6 | ||||
-rw-r--r-- | widgets/misc/e-multi-config-dialog.c | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index de287fd8de..633bf06add 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,9 @@ +2002-12-10 Not Zed <NotZed@Ximian.com> + + * e-multi-config-dialog.c (impl_response): Removed the + g_assert_not_reached(). If you hit the close button on your + window it would abort, treat same as close. + 2002-12-09 Chris Toshok <toshok@ximian.com> * e-clipped-label.[ch]: rework this to be faster and deal more diff --git a/widgets/misc/e-multi-config-dialog.c b/widgets/misc/e-multi-config-dialog.c index c0f6e3066f..c13aca4a49 100644 --- a/widgets/misc/e-multi-config-dialog.c +++ b/widgets/misc/e-multi-config-dialog.c @@ -273,10 +273,9 @@ impl_response (GtkDialog *dialog, do_apply (multi_config_dialog); break; case GTK_RESPONSE_CLOSE: + default: do_close (multi_config_dialog); break; - default: - g_assert_not_reached (); } } |