diff options
-rw-r--r-- | mail/ChangeLog | 3 | ||||
-rw-r--r-- | mail/em-account-prefs.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index d5b0d845d4..3e65c66925 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,8 @@ 2004-04-29 Not Zed <NotZed@Ximian.com> + * em-account-prefs.c (account_delete_clicked): duh, use the right + error id. + * mail-send-recv.c (receive_update_got_store): call mail_note_store rather than get_folder_info so that unread counts are propagated to the ui too. diff --git a/mail/em-account-prefs.c b/mail/em-account-prefs.c index e7530a0041..f5499a6195 100644 --- a/mail/em-account-prefs.c +++ b/mail/em-account-prefs.c @@ -214,7 +214,7 @@ account_delete_clicked (GtkButton *button, gpointer user_data) if (account == NULL || prefs->editor != NULL) return; - ans = e_error_run(PREFS_WINDOW(prefs), "mail:ask-account-delete", NULL); + ans = e_error_run(PREFS_WINDOW(prefs), "mail:ask-delete-account", NULL); if (ans == GTK_RESPONSE_YES) { int len; |