diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-account-gui.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 072ac00183..bfb7ea2ee5 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2002-01-25 Jeffrey Stedfast <fejj@ximian.com> + * mail-account-gui.c (delete_event_cb): We need to return a value + here. I think FALSE is fine (I hope). + * mail-display.c (save_data_cb): Save the pathname. (save_part): Use the new mail_config cruft to get the last used save pathname. diff --git a/mail/mail-account-gui.c b/mail/mail-account-gui.c index f731e174c9..f28ee8eb7e 100644 --- a/mail/mail-account-gui.c +++ b/mail/mail-account-gui.c @@ -1056,6 +1056,8 @@ static int delete_event_cb (GtkWidget *w, GdkEvent *event, ESignatureEditor *editor) { do_exit (editor); + + return FALSE; } static void |