aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-29 14:06:48 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-29 14:06:48 +0800
commitc183f07578437c8d5060ab07a5608c79e677d224 (patch)
treeac7983115a837435a97f569b6242713eed939dc1 /mail
parentd18328b51bf26d7ce84069510e36bf981e389803 (diff)
downloadgsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar.gz
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar.bz2
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar.lz
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar.xz
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.tar.zst
gsoc2013-evolution-c183f07578437c8d5060ab07a5608c79e677d224.zip
call mail_note_store rather than get_folder_info so that unread counts are
2004-04-29 Not Zed <NotZed@Ximian.com> * 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. svn path=/trunk/; revision=25679
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog4
-rw-r--r--mail/mail-send-recv.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index c40938e3d2..d5b0d845d4 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,9 @@
2004-04-29 Not Zed <NotZed@Ximian.com>
+ * 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.
+
* mail-errors.xml.in: fix the password dialogue text.
2004-04-28 Jeffrey Stedfast <fejj@ximian.com>
diff --git a/mail/mail-send-recv.c b/mail/mail-send-recv.c
index a27ca71da5..09c1605a9e 100644
--- a/mail/mail-send-recv.c
+++ b/mail/mail-send-recv.c
@@ -700,7 +700,7 @@ receive_update_got_store (char *uri, CamelStore *store, void *data)
struct _send_info *info = data;
if (store) {
- mail_get_folderinfo (store, info->cancel, receive_update_got_folderinfo, info);
+ mail_note_store(store, info->cancel, receive_update_got_folderinfo, info);
} else {
receive_done ("", info);
}