aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/component-factory.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 02662b2dfb..d71ca32bc0 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-09 Ettore Perazzoli <ettore@ximian.com>
+
+ * component-factory.c (add_storage): Pass %FALSE as
+ @has_shared_folders to evolution_storage_new().
+
2002-05-09 JP Rosevear <jpr@ximian.com>
* Makefile.am: dist Spell.idl
diff --git a/mail/component-factory.c b/mail/component-factory.c
index 8559898510..550b5bdb19 100644
--- a/mail/component-factory.c
+++ b/mail/component-factory.c
@@ -1229,7 +1229,7 @@ add_storage (const char *name, const char *uri, CamelService *store,
EvolutionStorage *storage;
EvolutionStorageResult res;
- storage = evolution_storage_new (name);
+ storage = evolution_storage_new (name, FALSE);
gtk_signal_connect (GTK_OBJECT (storage), "open_folder", storage_connect, store);
gtk_signal_connect (GTK_OBJECT (storage), "create_folder", storage_create_folder, store);
gtk_signal_connect (GTK_OBJECT (storage), "remove_folder", storage_remove_folder, store);