diff options
author | JP Rosevear <jpr@helixcode.com> | 2000-08-25 05:34:24 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2000-08-25 05:34:24 +0800 |
commit | f9d5c373587332aac4fb4e012ad0c99c3880e8bf (patch) | |
tree | 39435ae4513fac0bc6d903ed842f88eccc1dcdda /calendar/gui/calendar-model.c | |
parent | ccbbda543ae5171ad07d04ae1d1d16f39a93fea3 (diff) | |
download | gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.gz gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.zst gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.zip |
Update for libical 0.19
2000-08-24 JP Rosevear <jpr@helixcode.com>
* Update for libical 0.19
svn path=/trunk/; revision=5024
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r-- | calendar/gui/calendar-model.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index 822a01d218..e9f1a8884b 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -872,7 +872,7 @@ set_completed (CalComponent *comp, const char *value) cal_component_set_completed (comp, NULL); return; } else { - itt = icaltimetype_from_timet (t, FALSE); + itt = icaltime_from_timet (t, FALSE, TRUE); cal_component_set_completed (comp, &itt); } } @@ -895,7 +895,7 @@ set_datetime (CalComponent *comp, const char *value, CalComponentDateTime dt; struct icaltimetype itt; - itt = icaltimetype_from_timet (t, FALSE); + itt = icaltime_from_timet (t, FALSE, TRUE); dt.value = &itt; dt.tzid = NULL; @@ -1761,7 +1761,7 @@ calendar_model_mark_task_complete (CalendarModel *model, percent = 100; cal_component_set_percent (comp, &percent); - itt = icaltimetype_from_timet (time (NULL), FALSE); + itt = icaltime_from_timet (time (NULL), FALSE, TRUE); cal_component_set_completed (comp, &itt); if (!cal_client_update_object (priv->client, comp)) |