diff options
author | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-10 04:29:49 +0800 |
---|---|---|
committer | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-16 04:16:08 +0800 |
commit | 65705e4f55560889ac6de638aa8f3245c06349c0 (patch) | |
tree | 0c87f3c1efab739717a77f914a33085ca67fa2ab /mail/em-folder-tree-model.c | |
parent | b8efcdb8d6fc81c4b942bde4acd83f83b15791de (diff) | |
download | gsoc2013-evolution-65705e4f55560889ac6de638aa8f3245c06349c0.tar.gz gsoc2013-evolution-65705e4f55560889ac6de638aa8f3245c06349c0.tar.zst gsoc2013-evolution-65705e4f55560889ac6de638aa8f3245c06349c0.zip |
Make the mail folder cache a proper GObject
mail-folder-cache previously was a bit of a pseudo object (sort of a singleton)
that operated on some file static data. This commit re-factors things so that
it is a proper class named MailFolderCache. At the moment, this doesn't gain us
much, but in the future, it will allow us to add signals, etc so that we can
de-couple a lot of the interdependencies in here. This is essentially a
pre-requisite to splitting up a lot of the mail backend stuff.
https://bugzilla.gnome.org/show_bug.cgi?id=604627
Diffstat (limited to 'mail/em-folder-tree-model.c')
-rw-r--r-- | mail/em-folder-tree-model.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/em-folder-tree-model.c b/mail/em-folder-tree-model.c index b753cd7a84..4833277a71 100644 --- a/mail/em-folder-tree-model.c +++ b/mail/em-folder-tree-model.c @@ -550,7 +550,8 @@ em_folder_tree_model_set_folder_info (EMFolderTreeModel *model, /* HACK2: We do the same to the draft folder */ /* This is duplicated in mail-folder-cache too, should perhaps be functionised */ unread = fi->unread; - if (mail_note_get_folder_from_uri(fi->uri, &folder) && folder) { + if (mail_folder_cache_get_folder_from_uri(mail_folder_cache_get_default (), + fi->uri, &folder) && folder) { is_drafts = em_utils_folder_is_drafts (folder, fi->uri); if (is_drafts || em_utils_folder_is_outbox (folder, fi->uri)) { |