diff options
author | JP Rosevear <jpr@ximian.com> | 2003-11-19 12:51:20 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-11-19 12:51:20 +0800 |
commit | 736f94d96e9a4c5eee7dcb551fce5d7bd4d6c3c4 (patch) | |
tree | 61de7ff560cef90a2ea875839a7bdab1a447d07f /calendar/gui/e-cal-model-calendar.c | |
parent | 28aef9afc71eb2d2606171bbc94d72dfa325ed07 (diff) | |
download | gsoc2013-evolution-736f94d96e9a4c5eee7dcb551fce5d7bd4d6c3c4.tar.gz gsoc2013-evolution-736f94d96e9a4c5eee7dcb551fce5d7bd4d6c3c4.tar.zst gsoc2013-evolution-736f94d96e9a4c5eee7dcb551fce5d7bd4d6c3c4.zip |
make sure the timezone value is sane
2003-11-18 JP Rosevear <jpr@ximian.com>
* gui/e-cal-model.c (get_dtstart): make sure the timezone value is
sane
* gui/e-cal-model-calendar.c (get_dtend): ditto
svn path=/trunk/; revision=23435
Diffstat (limited to 'calendar/gui/e-cal-model-calendar.c')
-rw-r--r-- | calendar/gui/e-cal-model-calendar.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/calendar/gui/e-cal-model-calendar.c b/calendar/gui/e-cal-model-calendar.c index 76462064a2..e41160770a 100644 --- a/calendar/gui/e-cal-model-calendar.c +++ b/calendar/gui/e-cal-model-calendar.c @@ -126,11 +126,11 @@ get_dtend (ECalModelComponent *comp_data) comp_data->dtend = g_new0 (ECellDateEditValue, 1); comp_data->dtend->tt = tt_end; - /* FIXME: handle errors */ - e_cal_get_timezone (comp_data->client, - icaltime_get_tzid (tt_end), - &zone, NULL); - comp_data->dtend->zone = zone; + if (e_cal_get_timezone (comp_data->client, icaltime_get_tzid (tt_end), + &zone, NULL)) + comp_data->dtend->zone = zone; + else + comp_data->dtend->zone = NULL; } return comp_data->dtend; |