aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-storage.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-05-10 00:10:50 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-05-10 00:10:50 +0800
commitd325e6d453f0d8cbf448f9c078a547e06ded10a1 (patch)
tree632291e6b8184c66c115d990c31c89ef0c06c72c /shell/e-local-storage.c
parent8cdcac9e18a5c4ea17cacc997de85a90a111c01b (diff)
downloadgsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar
gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.gz
gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.bz2
gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.lz
gsoc2013-evolution-d325e6d453f0d8cbf448f9c078a547e06ded10a1.tar.xz
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 'shell/e-local-storage.c')
-rw-r--r--shell/e-local-storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/e-local-storage.c b/shell/e-local-storage.c
index 607fccb37e..58d8a5b20a 100644
--- a/shell/e-local-storage.c
+++ b/shell/e-local-storage.c
@@ -1039,7 +1039,7 @@ construct (ELocalStorage *local_storage,
priv->base_path = g_strndup (base_path, base_path_len);
g_assert (priv->bonobo_interface == NULL);
- priv->bonobo_interface = evolution_storage_new (E_LOCAL_STORAGE_NAME);
+ priv->bonobo_interface = evolution_storage_new (E_LOCAL_STORAGE_NAME, FALSE);
gtk_signal_connect (GTK_OBJECT (priv->bonobo_interface), "create_folder",
GTK_SIGNAL_FUNC (bonobo_interface_create_folder_cb),