aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-09-27 08:06:11 +0800
committerChris Toshok <toshok@src.gnome.org>2001-09-27 08:06:11 +0800
commit0d1f3b890ac279e56731656fafec7ba738300da6 (patch)
treeaedf8300690c9dd62fd95d6bfce072dc1f37787b
parentcb20fd3b4a8d7e56f93cb0e025bf638d5cc382a8 (diff)
downloadgsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar.gz
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar.bz2
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar.lz
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar.xz
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.tar.zst
gsoc2013-evolution-0d1f3b890ac279e56731656fafec7ba738300da6.zip
add OAFIID parameter to the call to the pas_book_factory_activate
2001-09-26 Chris Toshok <toshok@ximian.com> * wombat.c (setup_pas): add OAFIID parameter to the call to the pas_book_factory_activate function, as with the calendar stuff. svn path=/trunk/; revision=13181
-rw-r--r--wombat/ChangeLog5
-rw-r--r--wombat/wombat.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog
index 0c1a532596..478c8a93db 100644
--- a/wombat/ChangeLog
+++ b/wombat/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-26 Chris Toshok <toshok@ximian.com>
+
+ * wombat.c (setup_pas): add OAFIID parameter to the call to the
+ pas_book_factory_activate function, as with the calendar stuff.
+
2001-09-19 Rodrigo Moya <rodrigo@ximian.com>
* wombat.c (setup_pcs): add OAFIID parameter to the call to the
diff --git a/wombat/wombat.c b/wombat/wombat.c
index 966a14fdff..3e40e2dc13 100644
--- a/wombat/wombat.c
+++ b/wombat/wombat.c
@@ -31,6 +31,7 @@
#include "wombat-moniker.h"
#define CAL_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_CalendarFactory"
+#define PAS_BOOK_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_ServerFactory"
/* The and addressbook calendar factories */
@@ -102,7 +103,7 @@ setup_pas (int argc, char **argv)
GTK_SIGNAL_FUNC (last_book_gone_cb),
NULL);
- if (!pas_book_factory_activate (pas_book_factory)) {
+ if (!pas_book_factory_activate (pas_book_factory, PAS_BOOK_FACTORY_OAF_ID)) {
bonobo_object_unref (BONOBO_OBJECT (pas_book_factory));
pas_book_factory = NULL;
return FALSE;