diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-offline-handler.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 1836661ca9..a20ed886f8 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +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. + 2003-07-23 Dan Winship <danw@ximian.com> * Makefile.am: Use EVO_MARSHAL_RULE 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; |