diff options
Diffstat (limited to 'wombat')
-rw-r--r-- | wombat/ChangeLog | 5 | ||||
-rw-r--r-- | wombat/wombat.c | 9 |
2 files changed, 12 insertions, 2 deletions
diff --git a/wombat/ChangeLog b/wombat/ChangeLog index c202e18e2c..636cd8d044 100644 --- a/wombat/ChangeLog +++ b/wombat/ChangeLog @@ -1,3 +1,8 @@ +2000-08-02 Federico Mena Quintero <federico@helixcode.com> + + * wombat.c (setup_pcs): Register the iCalendar file backend instad + of the old IMC backend. + 2000-05-13 Ettore Perazzoli <ettore@helixcode.com> * Makefile.am (INCLUDES): GNOME includes should come last, so that diff --git a/wombat/wombat.c b/wombat/wombat.c index 1db39e5673..d8a6da6271 100644 --- a/wombat/wombat.c +++ b/wombat/wombat.c @@ -16,7 +16,7 @@ #endif #include "calendar/pcs/cal-factory.h" -#include "calendar/pcs/cal-backend-imc.h" +#include "calendar/pcs/cal-backend-file.h" /* The and addressbook calendar factories */ @@ -183,7 +183,7 @@ setup_pcs (int argc, char **argv) return; } - cal_factory_register_method (cal_factory, "file", CAL_BACKEND_IMC_TYPE); + cal_factory_register_method (cal_factory, "file", CAL_BACKEND_FILE_TYPE); object = bonobo_object_corba_objref (BONOBO_OBJECT (cal_factory)); @@ -265,6 +265,11 @@ init_bonobo (int *argc, char **argv) int main (int argc, char **argv) { + { + char *c = malloc (10); + if (c) + free (c); + } init_bonobo (&argc, argv); setup_vfs (argc, argv); |