diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-10 00:10:50 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-05-10 00:10:50 +0800 |
commit | d325e6d453f0d8cbf448f9c078a547e06ded10a1 (patch) | |
tree | 632291e6b8184c66c115d990c31c89ef0c06c72c /mail | |
parent | 8cdcac9e18a5c4ea17cacc997de85a90a111c01b (diff) | |
download | gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.gz gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.zst gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.zip |
Pass %FALSE as @has_shared_folders to evolution_storage_new().
* e-local-storage.c (construct): Pass %FALSE as
@has_shared_folders to evolution_storage_new().
* evolution-storage.c: New member has_shared_folders in
EvolutionStoragePrivate.
(init): Initialize to FALSE.
(evolution_storage_new): New arg @has_shared_folders.
(evolution_storage_construct): Likewise.
(impl_Storage__get_folderList): Renamed from
impl_Storage__get_folder_list.
(impl_Storage__get_hasSharedFolders): New, implementation for
::hasSharedFolders.
(evolution_storage_get_epv): Install the CORBA method
implementation.
* Evolution-Storage.idl: Make Storage::name a readonly attribute. New attribute Storage::
* component-factory.c (add_storage): Pass %FALSE as
@has_shared_folders to evolution_storage_new().
* gui/component/addressbook-storage.c
(addressbook_get_other_contact_storage): Pass %FALSE as
@has_shared_folders to evolution_storage_new().
svn path=/trunk/; revision=16733
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/component-factory.c | 2 |
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); |