diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/mail-ops.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 1759861c49..de54836c95 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2000-06-09 Dan Winship <danw@helixcode.com> + * mail-ops.c (expunge_folder): display error from + camel_folder_expunge if there is one. + * message-list.c (select_row): install an idle function to select the row rather than doing it directly. Ugh. What a kludge, but at least it works now. diff --git a/mail/mail-ops.c b/mail/mail-ops.c index 5f215c90d5..3ad9a4fe57 100644 --- a/mail/mail-ops.c +++ b/mail/mail-ops.c @@ -483,12 +483,9 @@ expunge_folder (BonoboUIHandler *uih, void *user_data, const char *path) /* FIXME: Folder should raise a signal to say its contents has changed ... */ e_table_model_changed (fb->message_list->table_model); -/* this always throws an error, when it shouldn't? */ -#if 0 if (camel_exception_get_id (&ex) != CAMEL_EXCEPTION_NONE) { mail_exception_dialog ("Unable to expunge deleted messages", &ex, fb); } -#endif } } |