diff options
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-storage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c index fe0a7760a7..63f920d872 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, NULL, 0, FALSE); + source->description, NULL, 0, FALSE, 0); 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, NULL, 0, FALSE); + source->uri, source->description, NULL, 0, FALSE, 0); g_free (path); } |