aboutsummaryrefslogtreecommitdiffstats
path: root/wombat
diff options
context:
space:
mode:
Diffstat (limited to 'wombat')
-rw-r--r--wombat/ChangeLog5
-rw-r--r--wombat/wombat.c4
2 files changed, 8 insertions, 1 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog
index 28b4dcd318..0c1a532596 100644
--- a/wombat/ChangeLog
+++ b/wombat/ChangeLog
@@ -1,3 +1,8 @@
+2001-09-19 Rodrigo Moya <rodrigo@ximian.com>
+
+ * wombat.c (setup_pcs): add OAFIID parameter to the call to the
+ cal_factory_oaf_register function
+
2001-08-02 Jon Trowbridge <trow@ximian.com>
* Makefile.am: Added camel dependency (now needed by ebook).
diff --git a/wombat/wombat.c b/wombat/wombat.c
index 61f4e911f7..966a14fdff 100644
--- a/wombat/wombat.c
+++ b/wombat/wombat.c
@@ -30,6 +30,8 @@
#include "wombat-moniker.h"
+#define CAL_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_CalendarFactory"
+
/* The and addressbook calendar factories */
static CalFactory *cal_factory;
@@ -134,7 +136,7 @@ setup_pcs (int argc, char **argv)
cal_factory_register_method (cal_factory, "file", CAL_BACKEND_FILE_TYPE);
- if (!cal_factory_oaf_register (cal_factory)) {
+ if (!cal_factory_oaf_register (cal_factory, CAL_FACTORY_OAF_ID)) {
bonobo_object_unref (BONOBO_OBJECT (cal_factory));
cal_factory = NULL;
return FALSE;