diff options
author | Not Zed <NotZed@Ximian.com> | 2004-04-29 14:08:38 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-04-29 14:08:38 +0800 |
commit | 6d07998f8e843ac70e8507de0a5bd0b6150a1085 (patch) | |
tree | 91896bfab7ac06810d2788d9e5b92508916f8d3f /mail | |
parent | c183f07578437c8d5060ab07a5608c79e677d224 (diff) | |
download | gsoc2013-evolution-6d07998f8e843ac70e8507de0a5bd0b6150a1085.tar.gz gsoc2013-evolution-6d07998f8e843ac70e8507de0a5bd0b6150a1085.tar.zst gsoc2013-evolution-6d07998f8e843ac70e8507de0a5bd0b6150a1085.zip |
duh, use the right error id.
2004-04-29 Not Zed <NotZed@Ximian.com>
* em-account-prefs.c (account_delete_clicked): duh, use the right
error id.
svn path=/trunk/; revision=25680
Diffstat (limited to 'mail')
-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; |