diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-08-14 16:48:28 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-08-14 16:48:28 +0800 |
commit | 46c6db5382822630732470cdecbadf6a191ba474 (patch) | |
tree | 883e913db437d32f9767f478fa034a9ee9f9c2a9 /addressbook/backend | |
parent | 6e1e2da22b43686947bf8669da92985f4fbfc7ac (diff) | |
download | gsoc2013-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/backend')
-rw-r--r-- | addressbook/backend/pas/pas-book.c | 23 |
1 files changed, 23 insertions, 0 deletions
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) |