diff options
author | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-11 07:06:30 +0800 |
---|---|---|
committer | Jonathon Jongsma <jonathon@quotidian.org> | 2009-12-16 04:16:08 +0800 |
commit | 9c4f98e915d3f2848b9acc5e089bf3fc56ae2b0f (patch) | |
tree | 422f3e24d6cc6a8bf7003657115d6f522f8239da /mail/mail-vfolder.h | |
parent | 65705e4f55560889ac6de638aa8f3245c06349c0 (diff) | |
download | gsoc2013-evolution-9c4f98e915d3f2848b9acc5e089bf3fc56ae2b0f.tar.gz gsoc2013-evolution-9c4f98e915d3f2848b9acc5e089bf3fc56ae2b0f.tar.zst gsoc2013-evolution-9c4f98e915d3f2848b9acc5e089bf3fc56ae2b0f.zip |
Add documentation to clarify mail-folder-cache functionality
Added a bunch of gtk-doc documentation as well as a variety of small comments in
the code. Also added documentation and renamed a couple of mail_vfolder_*
functions that are only used by mail-folder-cache to make things a lot more
understandable.
https://bugzilla.gnome.org/show_bug.cgi?id=604627
Diffstat (limited to 'mail/mail-vfolder.h')
-rw-r--r-- | mail/mail-vfolder.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/mail-vfolder.h b/mail/mail-vfolder.h index 725f7ec348..8e44ec44d5 100644 --- a/mail/mail-vfolder.h +++ b/mail/mail-vfolder.h @@ -44,8 +44,8 @@ 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); -/* add a uri that is now (un)available to vfolders in a transient manner */ -void mail_vfolder_add_uri(CamelStore *store, const gchar *uri, gint remove); +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); |