Bug 329486 Agenda tree times can be inconsistent with respect to timezone. r=dmose

This commit is contained in:
jminta%gmail.com 2006-03-06 22:57:23 +00:00
Родитель a7606fdc4a
Коммит a8864d843d
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -149,7 +149,10 @@ function getCellText(row, column)
if (event instanceof Synthetic)
return "";
var start = event.startDate || event.dueDate;
return start.toString();
var dateFormatter = Components.classes["@mozilla.org/calendar/datetime-formatter;1"]
.getService(Components.interfaces.calIDateTimeFormatter);
start = start.getInTimezone(calendarDefaultTimezone());
return dateFormatter.formatDateTime(start);
};
agendaTreeView.getLevel =