diff options
author | Dan Winship <danw@src.gnome.org> | 2002-03-08 02:28:40 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-03-08 02:28:40 +0800 |
commit | 127d736b662ef0015bdc6591bbc3bfe99037b413 (patch) | |
tree | 25141693e26afcc028301b142ecc83a7eb1005a8 /addressbook/gui/component | |
parent | 7065f6dba35467cb77519e0b9144659581746289 (diff) | |
download | gsoc2013-evolution-127d736b662ef0015bdc6591bbc3bfe99037b413.tar.gz gsoc2013-evolution-127d736b662ef0015bdc6591bbc3bfe99037b413.tar.zst gsoc2013-evolution-127d736b662ef0015bdc6591bbc3bfe99037b413.zip |
Update for evolution_storage_new() change.
* gui/component/addressbook-storage.c
(addressbook_get_other_contact_storage): Update for
evolution_storage_new() change.
svn path=/trunk/; revision=15966
Diffstat (limited to 'addressbook/gui/component')
-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 295a82210b..95af6c52ad 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"), NULL, NULL); + storage = evolution_storage_new (U_("Other Contacts")); gtk_signal_connect (GTK_OBJECT (storage), "remove_folder", GTK_SIGNAL_FUNC(remove_ldap_folder), NULL); |