From d325e6d453f0d8cbf448f9c078a547e06ded10a1 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Thu, 9 May 2002 16:10:50 +0000 Subject: 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 --- shell/evolution-storage.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'shell/evolution-storage.h') diff --git a/shell/evolution-storage.h b/shell/evolution-storage.h index c039a38e64..004aedebbe 100644 --- a/shell/evolution-storage.h +++ b/shell/evolution-storage.h @@ -113,8 +113,10 @@ POA_GNOME_Evolution_Storage__epv *evolution_storage_get_epv (void); GtkType evolution_storage_get_type (void); void evolution_storage_construct (EvolutionStorage *storage, GNOME_Evolution_Storage corba_object, - const char *name); -EvolutionStorage *evolution_storage_new (const char *name); + const char *name, + gboolean has_shared_folders); +EvolutionStorage *evolution_storage_new (const char *name, + gboolean has_shared_folders); void evolution_storage_rename (EvolutionStorage *storage, const char *new_name); -- cgit