diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 18:13:56 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-12-05 18:13:56 +0800 |
commit | 01bb1668503dd8e5d85aef8830dd1b04ea3e8726 (patch) | |
tree | 22e3a1d5496efb148e13b746dba98f9a462eaa6c /addressbook | |
parent | 9c28295de36c8c18c01c5c7846566526cee7f1ac (diff) | |
download | gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.gz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.bz2 gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.lz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.xz gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.tar.zst gsoc2013-evolution-01bb1668503dd8e5d85aef8830dd1b04ea3e8726.zip |
Update the calls to `evolution_storage_new()' according to the new
API in `libeshell'.
Sorry for breaking the build. :-(
svn path=/trunk/; revision=6788
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/gui/component/e-ldap-storage.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index a6002cfeda..bae159ff5c 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,9 @@ +2000-12-05 Ettore Perazzoli <ettore@helixcode.com> + + * gui/component/e-ldap-storage.c (setup_ldap_storage): Updated the + call to `evolution_storage_new()': pass NULL for + @toplevel_node_uri. + 2000-11-28 JP Rosevear <jpr@helixcode.com> * conduit/address-conduit.c (local_record_to_pilot_record): Return diff --git a/addressbook/gui/component/e-ldap-storage.c b/addressbook/gui/component/e-ldap-storage.c index 2dc443140d..32b4334348 100644 --- a/addressbook/gui/component/e-ldap-storage.c +++ b/addressbook/gui/component/e-ldap-storage.c @@ -85,7 +85,7 @@ setup_ldap_storage (EvolutionShellComponent *shell_component, corba_shell = bonobo_object_corba_objref (BONOBO_OBJECT (shell_client)); - storage = evolution_storage_new (_("External Directories")); + storage = evolution_storage_new (_("External Directories"), NULL); if (evolution_storage_register_on_shell (storage, corba_shell) != EVOLUTION_STORAGE_OK) { g_warning ("Cannot register storage"); return; |