diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-11-14 06:33:14 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-11-14 06:33:14 +0800 |
commit | c4652e9705eca58c35da9ef64349e7032e3ea9c0 (patch) | |
tree | abc7f76410c62aa0cd0ee82fa43ba55483d8ea0d | |
parent | f3fe0dd7a31616426fc41fc41954c7b40ee8f20f (diff) | |
download | gsoc2013-evolution-c4652e9705eca58c35da9ef64349e7032e3ea9c0.tar.gz gsoc2013-evolution-c4652e9705eca58c35da9ef64349e7032e3ea9c0.tar.zst gsoc2013-evolution-c4652e9705eca58c35da9ef64349e7032e3ea9c0.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=23341
-rw-r--r-- | mail/mail-offline-handler.c | 1 | ||||
-rw-r--r-- | mail/mail-vfolder.c | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/mail/mail-offline-handler.c b/mail/mail-offline-handler.c index 6a44b05712..85161a8f8e 100644 --- a/mail/mail-offline-handler.c +++ b/mail/mail-offline-handler.c @@ -36,6 +36,7 @@ #include <gal/util/e-util.h> + #define PARENT_TYPE bonobo_object_get_type () static BonoboObjectClass *parent_class = NULL; diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index b8161d7e59..e474ea70db 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -774,10 +774,10 @@ vfolder_load_storage(void) (CamelObjectEventHookFunc)store_folder_deleted, NULL); camel_object_hook_event(vfolder_store, "folder_renamed", (CamelObjectEventHookFunc)store_folder_renamed, NULL); - + d(printf("got store '%s' = %p\n", storeuri, vfolder_store)); - mail_component_load_storage_by_uri(mail_component_peek (), storeuri, _("VFolders")); - + mail_component_load_store_by_uri (mail_component_peek (), storeuri, _("VFolders")); + /* load our rules */ user = g_strdup_printf ("%s/mail/vfolders.xml", mail_component_peek_base_directory (mail_component_peek ())); context = vfolder_context_new (); |