diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-03-30 02:48:28 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-03-30 02:48:28 +0800 |
commit | 6f86cf7638d512c0f1953e889bdfee60a45cd0c9 (patch) | |
tree | 5e44112be7c0f5454f467346cbbe8285492e1440 /addressbook/backend/ebook/test-client.c | |
parent | 268aa743d50b496703eecd9c217879cde199380c (diff) | |
download | gsoc2013-evolution-6f86cf7638d512c0f1953e889bdfee60a45cd0c9.tar.gz gsoc2013-evolution-6f86cf7638d512c0f1953e889bdfee60a45cd0c9.tar.zst gsoc2013-evolution-6f86cf7638d512c0f1953e889bdfee60a45cd0c9.zip |
+ * addressbook/backend/pas/pas-book-factory.c
+ (PAS_BOOK_FACTORY_GOAD_ID): changed to
+ "evolution:addressbook-server".
+
+ * addressbook/backend/pas/Makefile.am: no need to install a
+ .gnorba file from here, as the wombat.gnorba file in
+ evolution/wombat will do its job.
+
+ * addressbook/backend/ebook/test-client.c (ebook_create): if
+ ebook_new fails, print a warning and return.
+
+ * addressbook/backend/ebook/e-book.c (CARDSERVER_GOAD_ID): changed
+ to "evolution:addressbook-server".
The wombat in evolution/wombat will now have both the pcs and the pas
in it.
svn path=/trunk/; revision=2246
Diffstat (limited to 'addressbook/backend/ebook/test-client.c')
-rw-r--r-- | addressbook/backend/ebook/test-client.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/addressbook/backend/ebook/test-client.c b/addressbook/backend/ebook/test-client.c index b99ebdae5e..3091fede1d 100644 --- a/addressbook/backend/ebook/test-client.c +++ b/addressbook/backend/ebook/test-client.c @@ -102,6 +102,14 @@ ebook_create (void) book = e_book_new (); + if (!book) { + printf ("%s: %s: Couldn't create EBook, bailing.\n", + __FILE__, + __FUNCTION__); + return FALSE; + } + + if (! e_book_load_uri (book, "file:/tmp/test.db", book_open_cb, NULL)) { printf ("error calling load_uri!\n"); } |