aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-book.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-14 13:56:12 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-14 13:56:12 +0800
commit934ad3b159ee6663ad243aed0df7089f8d8de483 (patch)
treeba20521eba57562ec6b864870848117ad71eea78 /addressbook/backend/ebook/e-book.c
parent8070b7f34b97bf1526b84e9134ccd6c3515cb8e5 (diff)
downloadgsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar.gz
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar.bz2
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar.lz
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar.xz
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.tar.zst
gsoc2013-evolution-934ad3b159ee6663ad243aed0df7089f8d8de483.zip
Call e_card_set_book here.
2001-08-14 Christopher James Lahey <clahey@ximian.com> * backend/ebook/e-book-view.c (add_book_iterator): Call e_card_set_book here. * backend/ebook/e-book.c (e_book_do_response_get_vcard): Call e_card_set_book here. * backend/ebook/e-card.c, backend/ebook/e-card.h: Pulled out the part where the uri is made part of the uid. Made uri a separate field. * backend/ebook/e-destination.c, backend/ebook/e-destination.h: Change this to use ECard's split uids and uris. svn path=/trunk/; revision=11991
Diffstat (limited to 'addressbook/backend/ebook/e-book.c')
-rw-r--r--addressbook/backend/ebook/e-book.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/e-book.c b/addressbook/backend/ebook/e-book.c
index 1d5baf33a3..a9b186b375 100644
--- a/addressbook/backend/ebook/e-book.c
+++ b/addressbook/backend/ebook/e-book.c
@@ -221,6 +221,7 @@ e_book_do_response_get_vcard (EBook *book,
card = e_card_new(resp->vcard);
if (card != NULL) {
+ e_card_set_book (card, book);
if (op->cb) {
if (op->active)
((EBookCardCallback) op->cb) (book, resp->status, card, op->closure);