diff options
author | Chris Toshok <toshok@ximian.com> | 2004-05-20 09:16:30 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2004-05-20 09:16:30 +0800 |
commit | 47c3838fee257737f17aae3696a8dda177af7a35 (patch) | |
tree | 700f2c3e3cd6fe3b13eeff901c7ea3c49daf76a6 /addressbook/importers | |
parent | 5bc91a74fecf9f6eecff4281408743ab694e26df (diff) | |
download | gsoc2013-evolution-47c3838fee257737f17aae3696a8dda177af7a35.tar.gz gsoc2013-evolution-47c3838fee257737f17aae3696a8dda177af7a35.tar.zst gsoc2013-evolution-47c3838fee257737f17aae3696a8dda177af7a35.zip |
use the new e_book_new and e_book_open apis.
2004-05-19 Chris Toshok <toshok@ximian.com>
* importers/evolution-vcard-importer.c (load_file_fn): use the new
e_book_new and e_book_open apis.
* importers/evolution-ldif-importer.c (load_file_fn): use the new
e_book_new and e_book_open apis.
* gui/widgets/eab-gui-util.c (eab_transfer_contacts): use the new
e_book_new and e_book_async_open apis.
* gui/contact-editor/e-contact-editor.c (cancel_load):
addressbook_load_source_cancel -> addressbook_load_cancel.
(source_selected): use the new e_book_new and addressbook_load.
* gui/component/select-names/e-select-names.c
(addressbook_model_set_source): use the new e_book_new and
addressbook_load.
* gui/component/select-names/e-select-names-manager.c
(update_completion_books): use the new e_book_new and
addressbook_load.
* gui/component/addressbook.h: rename
addressbook_load_source{_cancel} to addressbook_load{_cancel}, and
remove the source arg.
* gui/component/addressbook.c (addressbook_load): rename since we
aren't passing a source anymore.
(addressbook_load_cancel): same.
(addressbook_load_default_book): use the new e_book_new_* apis.
* gui/component/addressbook-view.c (delete_addressbook_cb): just
use e_book_new, not e_book_load_source.
(selector_tree_drag_data_received): switch to new
e_book_new_*/e_book_open apis.
(activate_source): same, and addressbook_load_source ->
addressbook_load.
* gui/component/addressbook-migrate.c
(migrate_contact_folder_to_source): switch to new
e_book_new_*/e_book_open apis.
(migrate_contact_lists_for_local_folders): same.
(migrate_company_phone_for_local_folders): same.
* conduit/address-conduit.c (pre_sync): switch to new
e_book_new_*/e_book_open apis.
svn path=/trunk/; revision=25999
Diffstat (limited to 'addressbook/importers')
-rw-r--r-- | addressbook/importers/evolution-ldif-importer.c | 4 | ||||
-rw-r--r-- | addressbook/importers/evolution-vcard-importer.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c index e82fd02074..e756f6adff 100644 --- a/addressbook/importers/evolution-ldif-importer.c +++ b/addressbook/importers/evolution-ldif-importer.c @@ -574,12 +574,12 @@ load_file_fn (EvolutionImporter *importer, gci->ready = FALSE; /* Load the book and the cards */ - gci->book = e_book_new (); + gci->book = e_book_new (gci->primary, NULL); if (!gci->book) { g_message (G_STRLOC ":Couldn't create EBook."); return FALSE; } - e_book_load_source (gci->book, gci->primary, TRUE, NULL); + e_book_open (gci->book, TRUE, NULL); gci->contactlist = create_contacts_from_ldif (filename); gci->ready = TRUE; diff --git a/addressbook/importers/evolution-vcard-importer.c b/addressbook/importers/evolution-vcard-importer.c index f457cefafc..5719dce51c 100644 --- a/addressbook/importers/evolution-vcard-importer.c +++ b/addressbook/importers/evolution-vcard-importer.c @@ -277,12 +277,12 @@ load_file_fn (EvolutionImporter *importer, gci->ready = FALSE; /* Load the book */ - gci->book = e_book_new (); + gci->book = e_book_new (gci->primary, NULL); if (!gci->book) { g_message (G_STRLOC ":Couldn't create EBook."); return FALSE; } - e_book_load_source (gci->book, gci->primary, TRUE, NULL); + e_book_open (gci->book, TRUE, NULL); /* Load the file and the contacts */ if (!g_file_get_contents (filename, &contents, NULL, NULL)) { |