diff options
author | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-12 01:51:55 +0800 |
---|---|---|
committer | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-16 04:16:09 +0800 |
commit | 0eef4618ca677cd11d54ce0ae8804b5b1ededf3b (patch) | |
tree | 0672e4006fe079420010fa34bd7ab46ae55af1c5 /mail/mail-vfolder.h | |
parent | 6e73a7a8f31c3b890ad900960a24b930cfeb13ed (diff) | |
download | gsoc2013-evolution-0eef4618ca677cd11d54ce0ae8804b5b1ededf3b.tar.gz gsoc2013-evolution-0eef4618ca677cd11d54ce0ae8804b5b1ededf3b.tar.zst gsoc2013-evolution-0eef4618ca677cd11d54ce0ae8804b5b1ededf3b.zip |
Remove mail-config, vfolder, and filter deps from mail-folder-cache
Instead of pushing the updates to the right places, the folder cache simply
emits the appropriate signals and other objects are responsible for listening
and handling them appropriately. This allows us to cut down the dependencies of
MailFolderCache significantly, which is a huge step towards allowing us to split
it off for the backend.
Another nice thing about this is that it allows us to trim a lot of 'public' api
from the filter, vfolder, and config classes that were only used by the cache.
Now that stuff can all be internal since they're pulling changes rather than
having the changes pushed.
The last remaining problematic dependency in MailFolderCache is
EmFolderTreeModel. That is next on the chopping block.
https://bugzilla.gnome.org/show_bug.cgi?id=604627
Diffstat (limited to 'mail/mail-vfolder.h')
-rw-r--r-- | mail/mail-vfolder.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/mail/mail-vfolder.h b/mail/mail-vfolder.h index 8e44ec44d5..a70cdd8757 100644 --- a/mail/mail-vfolder.h +++ b/mail/mail-vfolder.h @@ -44,15 +44,6 @@ void vfolder_gui_add_from_address (CamelInternetAddress *addr, gint flags, const GList * mail_vfolder_get_sources_local (void); GList * mail_vfolder_get_sources_remote (void); -void mail_vfolder_notify_uri_available(CamelStore *store, const gchar *uri); -void mail_vfolder_notify_uri_unavailable(CamelStore *store, const gchar *uri); - -/* note that a folder has changed name (uri) */ -void mail_vfolder_rename_uri(CamelStore *store, const gchar *from, const gchar *to); - -/* remove a uri that should be removed from vfolders permanently */ -void mail_vfolder_delete_uri(CamelStore *store, const gchar *uri); - /* close up, clean up */ void mail_vfolder_shutdown (void); |