diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-08-08 05:38:28 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-08-08 05:38:28 +0800 |
commit | 4de1f796a496703b01bcc0a8245030e4fbc378b8 (patch) | |
tree | 9817b8c5b886275946ae6aba5fc3b4f643ec82b4 /wombat | |
parent | 3d4dc806bfa5832e7d91218b50512e672e377791 (diff) | |
download | gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar.gz gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar.bz2 gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar.lz gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar.xz gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.tar.zst gsoc2013-evolution-4de1f796a496703b01bcc0a8245030e4fbc378b8.zip |
Big sync. Disable calendar compilation for a few hours - Federico
2000-08-07 Federico Mena Quintero <federico@helixcode.com>
* cal-util/cal-component.c (cal_component_get_as_string): Doh,
libical owns the string's memory, so do not free it.
* cal-client/client-test.c (create_client): Connect to the destroy
signal of the client here.
* cal-client/test.ics: New test file, modified from Eric Busboom's
test file from RFC 2445.
2000-08-05 Federico Mena Quintero <federico@helixcode.com>
* cal-client/client-test.c (dump_component): This was gone for
some reason.
(main): Load a new test file.
2000-08-04 Federico Mena Quintero <federico@helixcode.com>
* cal-util/cal-component.c (cal_component_commit_sequence): New
function to commit changes to the SEQUENCE property.
(cal_component_get_as_string): Ensure that the sequence has been
committed.
* cal-client/cal-client.c (cal_client_get_object): Use
CalComponent instead of the old iCalObject.
(cal_client_update_object): Use iCalObject. Commit the SEQUENCE
property before stringifying the object and piping it over to the
Wombat.
svn path=/trunk/; revision=4585
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); |