diff options
author | Not Zed <NotZed@Ximian.com> | 2002-12-10 19:06:13 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2002-12-10 19:06:13 +0800 |
commit | 6d87926c243f805696cbf37ec76cdb423a4a1acc (patch) | |
tree | 0577d72a17525fe182e8c786f95a66af5668dded | |
parent | c29a83e4f64698491c2a379382f0fdcc6bfcbce8 (diff) | |
download | gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar.gz gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar.bz2 gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar.lz gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar.xz gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.tar.zst gsoc2013-evolution-6d87926c243f805696cbf37ec76cdb423a4a1acc.zip |
Removed the g_assert_not_reached(). If you hit the close button on your
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.
svn path=/trunk/; revision=19083
-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 (); } } |