summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@src.gnome.org>2004-04-12 06:16:01 +0000
committerHarish Krishnaswamy <kharish@src.gnome.org>2004-04-12 06:16:01 +0000
commitd2e4f3d4f24f71addeadfb85bf8e2d10cf6f03dc (patch)
tree114d3fb1da29fd8dd7c9b104e49d992234f7108c
parentc6909cbb901318e8399a389b6e4512c820401d99 (diff)
downloadevolution-data-server-d2e4f3d4f24f71addeadfb85bf8e2d10cf6f03dc.tar.gz
Fixes #53926 set the tzid to "UTC" while setting the dueDate.
Fixes #53926 * backends/groupwise/e-cal-backend-groupwise-utils.c (e_gw_item_to_cal_component) : set the tzid to "UTC" while setting the dueDate.
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/backends/groupwise/e-cal-backend-groupwise-utils.c1
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 8cfa909c1..8be36d013 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,12 @@
+2004-04-12 Harish K <kharish@novell.com>
+
+ Fixes #53926
+
+ * backends/groupwise/e-cal-backend-groupwise-utils.c
+ (e_gw_item_to_cal_component) : set the tzid to "UTC"
+ while setting the dueDate.
+
+
2004-04-08 Rodrigo Moya <rodrigo@ximian.com>
* backends/groupwise/e-cal-backend-groupwise.c
diff --git a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
index 4efcb32e7..502ddd2f6 100644
--- a/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
+++ b/calendar/backends/groupwise/e-cal-backend-groupwise-utils.c
@@ -318,6 +318,7 @@ e_gw_item_to_cal_component (EGwItem *item)
t = e_gw_item_get_due_date (item);
itt = icaltime_from_timet (t, 0);
dt.value = &itt;
+ dt.tzid = g_strdup ("UTC");
e_cal_component_set_due (comp, &dt);
break;