aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog5
-rw-r--r--addressbook/backend/pas/pas-book.c23
2 files changed, 28 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 83d7ef2a69..b744cf9779 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,10 @@
2001-08-14 Christopher James Lahey <clahey@ximian.com>
+ * backend/pas/pas-book.c (pas_book_respond_get_vcard): Oops,
+ forgot to write this function.
+
+2001-08-14 Christopher James Lahey <clahey@ximian.com>
+
* gui/contact-editor/contact-editor.glade: Added focus targets
here. Fixes part of Ximian bug #5843.
diff --git a/addressbook/backend/pas/pas-book.c b/addressbook/backend/pas/pas-book.c
index 4461d63c44..9736648665 100644
--- a/addressbook/backend/pas/pas-book.c
+++ b/addressbook/backend/pas/pas-book.c
@@ -590,6 +590,29 @@ pas_book_respond_get_book_view (PASBook *book,
* pas_book_respond_get_changes:
*/
void
+pas_book_respond_get_vcard (PASBook *book,
+ GNOME_Evolution_Addressbook_BookListener_CallStatus status,
+ char *vcard)
+{
+ CORBA_Environment ev;
+
+ CORBA_exception_init (&ev);
+
+ GNOME_Evolution_Addressbook_BookListener_notifyCardRequested (
+ book->priv->listener, status, vcard, &ev);
+
+ if (ev._major != CORBA_NO_EXCEPTION) {
+ g_warning ("pas_book_respond_get_card: Exception "
+ "responding to BookListener!\n");
+ }
+
+ CORBA_exception_free (&ev);
+}
+
+/**
+ * pas_book_respond_get_changes:
+ */
+void
pas_book_respond_get_changes (PASBook *book,
GNOME_Evolution_Addressbook_BookListener_CallStatus status,
PASBookView *book_view)