зеркало из https://github.com/mozilla/gecko-dev.git
make unifinder show occurences. bug 285033, r=jminta
This commit is contained in:
Родитель
a04fed1221
Коммит
f78d26f473
|
@ -647,9 +647,7 @@ function refreshEventTree( eventArray )
|
|||
break;
|
||||
|
||||
case "future":
|
||||
// XXX
|
||||
//return( gEventSource.getAllFutureEvents() );
|
||||
EndDate = StartDate;
|
||||
EndDate = null;
|
||||
break;
|
||||
|
||||
case "current":
|
||||
|
@ -665,6 +663,9 @@ function refreshEventTree( eventArray )
|
|||
}
|
||||
var s = StartDate ? jsDateToDateTime(StartDate) : null;
|
||||
var e = EndDate ? jsDateToDateTime(EndDate) : null;
|
||||
if (StartDate && EndDate) {
|
||||
filter |= ccalendar.ITEM_FILTER_CLASS_OCCURRENCES;
|
||||
}
|
||||
ccalendar.getItems (filter, 0, s, e, refreshListener);
|
||||
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче