diff options
author | Yuedong Du <yuedong.du@sun.com> | 2003-07-24 11:11:44 +0800 |
---|---|---|
committer | Yuedong Du <york@src.gnome.org> | 2003-07-24 11:11:44 +0800 |
commit | 6fb2775ecb407ddfcdb42584004c7ea6e7130298 (patch) | |
tree | 2851e410b17a7b96ea9488e566305d525d76f560 /shell/e-shell-offline-handler.c | |
parent | fa88a2c61f749333f3891b4d931116989d1c8fbc (diff) | |
download | gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar.gz gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar.bz2 gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar.lz gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar.xz gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.tar.zst gsoc2013-evolution-6fb2775ecb407ddfcdb42584004c7ea6e7130298.zip |
fix crash when user escape the dialog. see bug #46700.
2003-07-24 Yuedong Du <yuedong.du@sun.com>
* e-shell-offline-handler.c: (dialog_response_cb): fix crash when user escape the
dialog. see bug #46700.
svn path=/trunk/; revision=21931
Diffstat (limited to 'shell/e-shell-offline-handler.c')
-rw-r--r-- | shell/e-shell-offline-handler.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/e-shell-offline-handler.c b/shell/e-shell-offline-handler.c index 4e87d3dcae..298421b1a8 100644 --- a/shell/e-shell-offline-handler.c +++ b/shell/e-shell-offline-handler.c @@ -625,6 +625,7 @@ dialog_response_cb (GtkDialog *dialog, break; case GTK_RESPONSE_CANCEL: + case GTK_RESPONSE_DELETE_EVENT: dialog_handle_cancel (dialog, offline_handler); break; |