diff options
author | Dan Winship <danw@src.gnome.org> | 2002-09-05 04:40:56 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-09-05 04:40:56 +0800 |
commit | d28a3e110080adf3f31e47a2b60120d175bb387e (patch) | |
tree | 5b023e8400469cfa7fd20718d495538212c02ba0 /addressbook/gui | |
parent | 2dd03125d53011d047a07f1d51a3b585143dcdef (diff) | |
download | gsoc2013-evolution-d28a3e110080adf3f31e47a2b60120d175bb387e.tar.gz gsoc2013-evolution-d28a3e110080adf3f31e47a2b60120d175bb387e.tar.zst gsoc2013-evolution-d28a3e110080adf3f31e47a2b60120d175bb387e.zip |
Pass FALSE to evolution_storage_new: the Other Contacts storage doesn't
* gui/component/addressbook-storage.c
(addressbook_get_other_contact_storage): Pass FALSE to
evolution_storage_new: the Other Contacts storage doesn't support
shared folders.
svn path=/trunk/; revision=17978
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-storage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c index 63f920d872..95c132cbcf 100644 --- a/addressbook/gui/component/addressbook-storage.c +++ b/addressbook/gui/component/addressbook-storage.c @@ -165,7 +165,7 @@ addressbook_get_other_contact_storage (void) EvolutionStorageResult result; if (storage == NULL) { - storage = evolution_storage_new (U_("Other Contacts"), TRUE); + storage = evolution_storage_new (U_("Other Contacts"), FALSE); gtk_signal_connect (GTK_OBJECT (storage), "remove_folder", GTK_SIGNAL_FUNC(remove_ldap_folder), NULL); |