aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-08-14 16:48:28 +0800
committerChris Lahey <clahey@src.gnome.org>2001-08-14 16:48:28 +0800
commit46c6db5382822630732470cdecbadf6a191ba474 (patch)
tree883e913db437d32f9767f478fa034a9ee9f9c2a9 /addressbook
parent6e1e2da22b43686947bf8669da92985f4fbfc7ac (diff)
downloadgsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar.gz
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar.bz2
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar.lz
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar.xz
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.tar.zst
gsoc2013-evolution-46c6db5382822630732470cdecbadf6a191ba474.zip
Oops, forgot to write this function.
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. svn path=/trunk/; revision=11999
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)