diff options
author | 0 <NotZed@Ximian.com> | 2001-09-21 08:56:49 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-21 08:56:49 +0800 |
commit | a68b5681353d9999b208cdbada9b40586eb09c18 (patch) | |
tree | 71cc4eae2909937c92ce902c2c1571e95eb58565 /mail/component-factory.c | |
parent | 5de6e2a14b9d3e4fc3260cfa195921d020249a22 (diff) | |
download | gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.gz gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.tar.zst gsoc2013-evolution-a68b5681353d9999b208cdbada9b40586eb09c18.zip |
Update the status bar here, assuming we've just been activated.
2001-09-20 <NotZed@Ximian.com>
* folder-browser.c (folder_browser_set_shell_view): Update the
status bar here, assuming we've just been activated.
* mail-ops.c (add_vtrash_info): Scan whole list, rather than
missing the last one. Also dont assume its always the last,
otherwise we could lose following folders.
* mail-vfolder.c
(all): d(x) out debug printfs
* mail-folder-cache.c
(update_1folder): If its a vtrash folder, or the outbox_folder,
and we have a folder, then make the 'count' the total message
count, not unread messages count.
svn path=/trunk/; revision=13036
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 8d656185e3..bcade8d39e 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -1016,7 +1016,7 @@ mail_load_storage_by_uri (GNOME_Evolution_Shell shell, const char *uri, const ch * see if this belongs in the shell's folder list. If so, add * it. */ - + prov = camel_session_get_provider (session, uri, &ex); if (prov == NULL) { /* FIXME: real error dialog */ @@ -1040,7 +1040,7 @@ mail_load_storage_by_uri (GNOME_Evolution_Shell shell, const char *uri, const ch || (strcmp (prov->protocol, "maildir") == 0) || (strcmp (prov->protocol, "vfolder") == 0))) return; - + store = camel_session_get_service (session, uri, CAMEL_PROVIDER_STORE, &ex); if (store == NULL) { /* FIXME: real error dialog */ |