diff options
author | JP Rosevear <jpr@ximian.com> | 2001-01-24 04:58:23 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2001-01-24 04:58:23 +0800 |
commit | 34e6621ac12bc290cea08041e25b07f0ac3c51c9 (patch) | |
tree | 4b2326cfec7cfa6737b014f3f9436036f7df1d4d /calendar/gui/calendar-model.c | |
parent | 5d7f815b3eede63ce843c7de7a3d2302c6b93586 (diff) | |
download | gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.gz gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.bz2 gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.lz gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.xz gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.tar.zst gsoc2013-evolution-34e6621ac12bc290cea08041e25b07f0ac3c51c9.zip |
libical import cleanup
2001-01-23 JP Rosevear <jpr@ximian.com>
* libical import cleanup
svn path=/trunk/; revision=7753
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r-- | calendar/gui/calendar-model.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index 2ab801cdf3..3721366cf0 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -1004,7 +1004,7 @@ set_datetime (CalendarModel *model, CalComponent *comp, const char *value, CalComponentDateTime dt; struct icaltimetype itt; - itt = icaltime_from_timet (t, FALSE, TRUE); + itt = icaltime_from_timet (t, FALSE); dt.value = &itt; dt.tzid = NULL; @@ -2001,7 +2001,7 @@ ensure_task_complete (CalComponent *comp, } if (set_completed) { - new_completed = icaltime_from_timet (completed_date, FALSE, TRUE); + new_completed = icaltime_from_timet (completed_date, FALSE); cal_component_set_completed (comp, &new_completed); } |