aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/event-editor.c
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-25 05:34:24 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-25 05:34:24 +0800
commitf9d5c373587332aac4fb4e012ad0c99c3880e8bf (patch)
tree39435ae4513fac0bc6d903ed842f88eccc1dcdda /calendar/gui/event-editor.c
parentccbbda543ae5171ad07d04ae1d1d16f39a93fea3 (diff)
downloadgsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar
gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.gz
gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.bz2
gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.lz
gsoc2013-evolution-f9d5c373587332aac4fb4e012ad0c99c3880e8bf.tar.xz
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/event-editor.c')
-rw-r--r--calendar/gui/event-editor.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index f0246b3309..6f8a3a9154 100644
--- a/calendar/gui/event-editor.c
+++ b/calendar/gui/event-editor.c
@@ -951,7 +951,7 @@ dialog_to_comp_object (EventEditor *ee)
date.value = g_new (struct icaltimetype, 1);
t = e_dialog_dateedit_get (priv->start_time);
- *date.value = icaltimetype_from_timet (t, FALSE);
+ *date.value = icaltime_from_timet (t, FALSE, TRUE);
cal_component_set_dtstart (comp, &date);
/* If the all_day toggle is set, the end date is inclusive of the
@@ -961,7 +961,7 @@ dialog_to_comp_object (EventEditor *ee)
if (all_day_event)
t = time_day_end (t);
- *date.value = icaltimetype_from_timet (t, FALSE);
+ *date.value = icaltime_from_timet (t, FALSE, TRUE);
cal_component_set_dtend (comp, &date);
g_free (date.value);
@@ -1066,7 +1066,7 @@ dialog_to_comp_object (EventEditor *ee)
* secs to get get next day, in accordance to the RFC
*/
t = e_dialog_dateedit_get (priv->recurrence_ending_date_end_on_date) + 86400;
- recur->until = icaltimetype_from_timet (t, TRUE);
+ recur->until = icaltime_from_timet (t, TRUE, TRUE);
} else if (e_dialog_toggle_get (priv->recurrence_ending_date_end_after)) {
recur->count = e_dialog_spin_get_int (priv->recurrence_ending_date_end_after_count);
}
@@ -1081,7 +1081,7 @@ dialog_to_comp_object (EventEditor *ee)
time_t *t;
t = gtk_clist_get_row_data (exception_list, i);
- *tt = icaltimetype_from_timet (*t, FALSE);
+ *tt = icaltime_from_timet (*t, FALSE, TRUE);
list = g_slist_prepend (list, tt);
}