diff options
author | Michael Zucci <zucchi@src.gnome.org> | 2001-09-22 04:10:58 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-09-22 04:10:58 +0800 |
commit | c55395477215d9ecf3092f3e791b80c9145f8422 (patch) | |
tree | 530f0abe528bb399eb5f278878b75514dfd19b01 /mail/component-factory.c | |
parent | 704b38203221056b0e6e8c845e0f0ec814bdebbc (diff) | |
download | gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar.gz gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar.bz2 gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar.lz gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar.xz gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.tar.zst gsoc2013-evolution-c55395477215d9ecf3092f3e791b80c9145f8422.zip |
All made redundant by new mail-folder-cache code. (delete_folders,
* mail-callbacks.c (mail_storage_create_folder, folder_created,
create_folders): All made redundant by new mail-folder-cache
code.
(delete_folders, folder_deleted): Uh, code that isn't used
anywhere. Removed.
* component-factory.c (storage_create_folder): Dont call
folder_created, let the folder_created event handle the update.
* mail-ops.c (mail_scan_subfolders): Remove, no longer used.
svn path=/trunk/; revision=13059
Diffstat (limited to 'mail/component-factory.c')
-rw-r--r-- | mail/component-factory.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index e8a6df7ef2..812225841b 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -895,11 +895,7 @@ storage_create_folder (EvolutionStorage *storage, for (fi = root; fi; fi = fi->child) camel_store_subscribe_folder (store, fi->full_name, NULL); } - - prefix = g_strndup (path, name - path - 1); - folder_created (store, prefix, root); - g_free (prefix); - + camel_store_free_folder_info (store, root); notify_listener (listener, GNOME_Evolution_Storage_OK); |