From 9fe2942fe8ed2a561c9a3098f8a3655ae2691fcd Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Fri, 6 Feb 2004 03:03:46 +0000 Subject: Convert the calendar_config_get_timezone and 2004-02-05 JP Rosevear * Convert the calendar_config_get_timezone and icaltimezone_get_builtin_timezone pair to just calendar_config_get_icaltimezone, this also guarantees we will have some timezone (even if its just UTC) svn path=/trunk/; revision=24642 --- calendar/gui/e-calendar-table-config.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'calendar/gui/e-calendar-table-config.c') diff --git a/calendar/gui/e-calendar-table-config.c b/calendar/gui/e-calendar-table-config.c index 74be72143f..25dd3d825d 100644 --- a/calendar/gui/e-calendar-table-config.c +++ b/calendar/gui/e-calendar-table-config.c @@ -162,19 +162,12 @@ static void set_timezone (ECalendarTable *table) { ECalModel *model; - char *location; icaltimezone *zone; - location = calendar_config_get_timezone (); - zone = icaltimezone_get_builtin_timezone (location); - if (!zone) - zone = icaltimezone_get_utc_timezone (); - + zone = calendar_config_get_icaltimezone (); model = e_calendar_table_get_model (table); if (model) e_cal_model_set_timezone (model, zone); - - g_free (location); } static void -- cgit v1.2.3