aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorHarry Lu <haip@src.gnome.org>2004-02-11 13:26:48 +0800
committerHarry Lu <haip@src.gnome.org>2004-02-11 13:26:48 +0800
commit1ce0efbd345df0645c7f4ac28735e85adc111a2e (patch)
tree3780844e79514fccaec38730c222472127a8446a /calendar/gui
parentf9d588d588ac2c20ba861c4b9df931029210b659 (diff)
downloadgsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar.gz
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar.bz2
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar.lz
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar.xz
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.tar.zst
gsoc2013-evolution-1ce0efbd345df0645c7f4ac28735e85adc111a2e.zip
guarantee we do have some timezone before the time convertion.
* gui/print.c: (print_date_label): guarantee we do have some timezone before the time convertion. svn path=/trunk/; revision=24695
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/print.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c
index b29934c09f..21bf5ccba5 100644
--- a/calendar/gui/print.c
+++ b/calendar/gui/print.c
@@ -2215,6 +2215,8 @@ print_date_label (GnomePrintContext *pc, ECalComponent *comp, ECal *client,
e_cal_component_get_dtstart (comp, &datetime);
if (datetime.value) {
start_zone = get_zone_from_tzid (client, datetime.tzid);
+ if (!start_zone)
+ start_zone = calendar_config_get_icaltimezone ();
start = icaltime_as_timet_with_zone (*datetime.value,
start_zone);
}
@@ -2223,6 +2225,8 @@ print_date_label (GnomePrintContext *pc, ECalComponent *comp, ECal *client,
e_cal_component_get_dtend (comp, &datetime);
if (datetime.value) {
end_zone = get_zone_from_tzid (client, datetime.tzid);
+ if (!end_zone)
+ end_zone = calendar_config_get_icaltimezone ();
end = icaltime_as_timet_with_zone (*datetime.value,
end_zone);
}
@@ -2231,6 +2235,8 @@ print_date_label (GnomePrintContext *pc, ECalComponent *comp, ECal *client,
e_cal_component_get_due (comp, &datetime);
if (datetime.value) {
due_zone = get_zone_from_tzid (client, datetime.tzid);
+ if (!due_zone)
+ due_zone = calendar_config_get_icaltimezone ();
due = icaltime_as_timet_with_zone (*datetime.value,
due_zone);
}