Bustage fix from bug 310503. getCalendarManager is not defined. r=dmose

This commit is contained in:
jminta%gmail.com 2005-10-21 17:16:04 +00:00
Родитель 10aa71fd0b
Коммит 9ccb4f38d7
1 изменённых файлов: 10 добавлений и 0 удалений

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

@ -492,3 +492,13 @@ var calCompositeCalendarModule = {
function NSGetModule(compMgr, fileSpec) {
return calCompositeCalendarModule;
}
var activeCalendarManager = null;
function getCalendarManager() {
if (!activeCalendarManager) {
activeCalendarManager =
Components.classes["@mozilla.org/calendar/manager;1"]
.getService(Components.interfaces.calICalendarManager);
}
return activeCalendarManager;
}