Bug 325701 Do not display start time 0:00 for all day events. patch by bowmanmc@gmail.com, r=jminta

This commit is contained in:
jminta%gmail.com 2006-02-13 19:05:09 +00:00
Родитель a354d34779
Коммит 41ba5b698f
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -72,7 +72,8 @@
}
var str = null;
if (val instanceof Components.interfaces.calIEvent) {
// if val is an event and not an all day event, show start time in title
if (val instanceof Components.interfaces.calIEvent && !val.startDate.isDate) {
str = formatTime(val.startDate.getInTimezone(this.calendarView.mTimezone))
} else if (val instanceof Components.interfaces.calITodo) {
// yeah, this should really be a little picture instead of a "*"