diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-14 13:56:12 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-14 13:56:12 +0800 |
commit | 934ad3b159ee6663ad243aed0df7089f8d8de483 (patch) | |
tree | ba20521eba57562ec6b864870848117ad71eea78 /addressbook/backend/ebook/e-book-view.c | |
parent | 8070b7f34b97bf1526b84e9134ccd6c3515cb8e5 (diff) | |
download | gsoc2013-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-view.c')
-rw-r--r-- | addressbook/backend/ebook/e-book-view.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/addressbook/backend/ebook/e-book-view.c b/addressbook/backend/ebook/e-book-view.c index 7dbe7d46fb..39aab8623f 100644 --- a/addressbook/backend/ebook/e-book-view.c +++ b/addressbook/backend/ebook/e-book-view.c @@ -47,10 +47,7 @@ add_book_iterator (gpointer data, gpointer closure) ECard *card = E_CARD (data); EBook *book = E_BOOK (closure); - if (card->book == NULL) { - card->book = book; - gtk_object_ref (GTK_OBJECT (book)); - } + e_card_set_book (card, book); } static void |