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-destination.h | |
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-destination.h')
-rw-r--r-- | addressbook/backend/ebook/e-destination.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/addressbook/backend/ebook/e-destination.h b/addressbook/backend/ebook/e-destination.h index 92d4d803f2..dc43d9703c 100644 --- a/addressbook/backend/ebook/e-destination.h +++ b/addressbook/backend/ebook/e-destination.h @@ -70,7 +70,8 @@ void e_destination_clear (EDestination *); gboolean e_destination_is_empty (const EDestination *); void e_destination_set_card (EDestination *, ECard *card, gint email_num); -void e_destination_set_card_uri (EDestination *, const gchar *uri, gint email_num); +void e_destination_set_book_uri (EDestination *, const gchar *uri); +void e_destination_set_card_uid (EDestination *, const gchar *uid, gint email_num); void e_destination_set_name (EDestination *, const gchar *name); void e_destination_set_email (EDestination *, const gchar *email); @@ -83,7 +84,8 @@ gboolean e_destination_from_card (const EDestination *); void e_destination_use_card (EDestination *, EDestinationCardCallback cb, gpointer closure); ECard *e_destination_get_card (const EDestination *); -const gchar *e_destination_get_card_uri (const EDestination *); +const gchar *e_destination_get_book_uri (const EDestination *); +const gchar *e_destination_get_card_uid (const EDestination *); gint e_destination_get_email_num (const EDestination *); const gchar *e_destination_get_name (const EDestination *); /* "Jane Smith" */ |