aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-05-21 03:06:03 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-05-21 03:06:03 +0800
commit13c9d214fa4b93a0c3ae08a533a8605b13a323b1 (patch)
treeccbba8078222dac08bc3697a8ce6415b950e6009 /addressbook
parent3682e0ef1f2d736ced6cff11dd4c5e87dd0fd6d8 (diff)
downloadgsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar.gz
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar.bz2
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar.lz
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar.xz
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.tar.zst
gsoc2013-evolution-13c9d214fa4b93a0c3ae08a533a8605b13a323b1.zip
Set the can_sync_offline property on the EFolder based on the
* e-corba-storage.c (impl_StorageListener_notifyFolderCreated): Set the can_sync_offline property on the EFolder based on the canSyncOffline value on the CORBA folder. * evolution-test-component.c (setup_custom_storage): Pass FALSE for @sync_offline to evolution_storage_new_folder(). * e-local-storage.c (new_folder): Pass FALSE for @sync_offline to evolution_storage_new_folder(). * evolution-storage.h (evolution_storage_new_folder): New arg @can_sync_offline. * subscribe-dialog.c (recursive_add_folder): Pass TRUE for @sync_offline to evolution_storage_new_folder(). * mail-folder-cache.c (real_flush_updates): Pass TRUE for @sync_offline to evolution_storage_new_folder(). * gui/component/addressbook-storage.c (load_source_data): Pass FALSE for @sync_offline to evolution_storage_new_folder(). (addressbook_storage_add_source): Pass FALSE for @sync_offline to evolution_storage_new_folder(). svn path=/trunk/; revision=16947
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog7
-rw-r--r--addressbook/gui/component/addressbook-storage.c4
2 files changed, 9 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index abcc8b687a..2cb1d58305 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,10 @@
+2002-05-20 Ettore Perazzoli <ettore@ximian.com>
+
+ * gui/component/addressbook-storage.c (load_source_data): Pass
+ FALSE for @sync_offline to evolution_storage_new_folder().
+ (addressbook_storage_add_source): Pass FALSE for @sync_offline to
+ evolution_storage_new_folder().
+
2002-05-16 Ettore Perazzoli <ettore@ximian.com>
* gui/component/addressbook-component.c (request_quit): New, quit
diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c
index 358c3e8245..be2ad3d1e7 100644
--- a/addressbook/gui/component/addressbook-storage.c
+++ b/addressbook/gui/component/addressbook-storage.c
@@ -460,7 +460,7 @@ load_source_data (const char *file_path)
path = g_strdup_printf ("/%s", source->name);
evolution_storage_new_folder (storage, path, source->name,
"ldap-contacts", source->uri,
- source->description, 0);
+ source->description, 0, FALSE);
sources = g_list_append (sources, source);
@@ -579,7 +579,7 @@ addressbook_storage_add_source (AddressbookSource *source)
addressbook_get_other_contact_storage();
path = g_strdup_printf ("/%s", source->name);
evolution_storage_new_folder (storage, path, source->name, "ldap-contacts",
- source->uri, source->description, 0);
+ source->uri, source->description, 0, FALSE);
g_free (path);
}