aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorJP Rosevear <jpr@helixcode.com>2000-08-29 12:20:16 +0800
committerJP Rosevear <jpr@src.gnome.org>2000-08-29 12:20:16 +0800
commit919e333a783ac045a45a34ed8efca6fb730ed968 (patch)
tree4f7c493d9510f0cbeff342e0c5282f2183a8a8bb /calendar/gui
parentd082be408a72cd7fae09c6c8ba9a823a53b1edbd (diff)
downloadgsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar.gz
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar.bz2
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar.lz
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar.xz
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.tar.zst
gsoc2013-evolution-919e333a783ac045a45a34ed8efca6fb730ed968.zip
These are not UTC times
2000-08-29 JP Rosevear <jpr@helixcode.com> * gui/event-editor.c (dialog_to_comp_object): These are not UTC times svn path=/trunk/; revision=5093
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/event-editor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/event-editor.c b/calendar/gui/event-editor.c
index d29b67b7fd..260b76d94e 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 = icaltime_from_timet (t, FALSE, TRUE);
+ *date.value = icaltime_from_timet (t, FALSE, FALSE);
date.tzid = NULL;
cal_component_set_dtstart (comp, &date);
@@ -962,7 +962,7 @@ dialog_to_comp_object (EventEditor *ee)
if (all_day_event)
t = time_day_end (t);
- *date.value = icaltime_from_timet (t, FALSE, TRUE);
+ *date.value = icaltime_from_timet (t, FALSE, FALSE);
cal_component_set_dtend (comp, &date);
g_free (date.value);