diff options
-rw-r--r-- | wombat/ChangeLog | 5 | ||||
-rw-r--r-- | wombat/wombat.c | 3 |
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; |