diff options
author | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-12-31 23:58:08 +0800 |
---|---|---|
committer | Eskil Heyn Olsen <eskil@src.gnome.org> | 1999-12-31 23:58:08 +0800 |
commit | eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7 (patch) | |
tree | bc250c8cc8679635d972d3f847291882f02bc062 /calendar/corba-cal.c | |
parent | 0948bfda86d63a09c5b5c9661911e963cc750357 (diff) | |
download | gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar.gz gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar.bz2 gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar.lz gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar.xz gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.tar.zst gsoc2013-evolution-eb7c5ae3c5fa9ab3bab2a60d7a0c8a5a4ed93cb7.zip |
Committed fixes for the end-on-day recurrence bug where the last
day was skipped.
Also fixed problem with multiple setitimer calls that where especially
pesky in the corba part, where corba calls would cause numerous alarm
dialogs when the events alarm went off.
svn path=/trunk/; revision=1525
Diffstat (limited to 'calendar/corba-cal.c')
-rw-r--r-- | calendar/corba-cal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/corba-cal.c b/calendar/corba-cal.c index 472d83008e..2a3a727869 100644 --- a/calendar/corba-cal.c +++ b/calendar/corba-cal.c @@ -251,7 +251,7 @@ cal_repo_get_updated_objects (PortableServer_Servant servant, CORBA_char *res; char *str; - dirty_cal = calendar_new ("Temporal"); + dirty_cal = calendar_new ("Temporal",CALENDAR_INIT_NIL); for (l = gcal->cal->events; l; l = l->next){ iCalObject *obj = l->data; |