diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-11-14 06:33:02 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-11-14 06:33:02 +0800 |
commit | f3fe0dd7a31616426fc41fc41954c7b40ee8f20f (patch) | |
tree | 43873596c2c3b7fd60125ed3b21ad3d01e9d27be /mail/mail-component.h | |
parent | 5c8d360c983f9362cd96c59089b9f2b8fc415847 (diff) | |
download | gsoc2013-evolution-f3fe0dd7a31616426fc41fc41954c7b40ee8f20f.tar.gz gsoc2013-evolution-f3fe0dd7a31616426fc41fc41954c7b40ee8f20f.tar.zst gsoc2013-evolution-f3fe0dd7a31616426fc41fc41954c7b40ee8f20f.zip |
Updated for function name changes in mail-component.c
2003-11-13 Jeffrey Stedfast <fejj@ximian.com>
* mail-vfolder.c (vfolder_load_storage): Updated for function name
changes in mail-component.c
* mail-offline-handler.c: Updated for function name changes in
mail-component.c
* mail-account-gui.c (add_new_store): Fixed to not use EStorage.
(mail_account_gui_save): Updated for function name changes.
* em-account-prefs.c (account_delete_clicked): Updated for
function name changes.
(account_able_clicked): Same.
(account_able_toggled): Same.
* mail-component.c: Renamed mail_component_*storage*() functions
to mail_component_*store*() since we are no longer dealing with
storages, but instead with CamelStore's.
(create_view_widget): If the user selects a store node, don't try
to open it as a folder.
svn path=/trunk/; revision=23340
Diffstat (limited to 'mail/mail-component.h')
-rw-r--r-- | mail/mail-component.h | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/mail/mail-component.h b/mail/mail-component.h index aab2dab4b3..1d31a22da5 100644 --- a/mail/mail-component.h +++ b/mail/mail-component.h @@ -63,24 +63,25 @@ GType mail_component_get_type (void); MailComponent *mail_component_peek (void); -const char *mail_component_peek_base_directory (MailComponent *component); -RuleContext *mail_component_peek_search_context (MailComponent *component); - -void mail_component_add_store (MailComponent *component, - CamelStore *store, - const char *name); -CamelStore *mail_component_load_storage_by_uri (MailComponent *component, - const char *uri, - const char *name); -void mail_component_remove_storage (MailComponent *component, - CamelStore *store); -void mail_component_remove_storage_by_uri (MailComponent *component, - const char *uri); - -int mail_component_get_storage_count (MailComponent *component); -void mail_component_storages_foreach (MailComponent *component, - GHFunc func, - void *data); +const char *mail_component_peek_base_directory (MailComponent *component); +RuleContext *mail_component_peek_search_context (MailComponent *component); + +void mail_component_add_store (MailComponent *component, + CamelStore *store, + const char *name); +CamelStore *mail_component_load_store_by_uri (MailComponent *component, + const char *uri, + const char *name); + +void mail_component_remove_store (MailComponent *component, + CamelStore *store); +void mail_component_remove_store_by_uri (MailComponent *component, + const char *uri); + +int mail_component_get_store_count (MailComponent *component); +void mail_component_stores_foreach (MailComponent *component, + GHFunc func, + void *data); void mail_component_remove_folder (MailComponent *component, CamelStore *store, const char *path); |