зеркало из https://github.com/mozilla/gecko-dev.git
Bug 329486 Agenda tree times can be inconsistent with respect to timezone. r=dmose
This commit is contained in:
Родитель
a7606fdc4a
Коммит
a8864d843d
|
@ -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 =
|
||||
|
|
Загрузка…
Ссылка в новой задаче