Bug 412853 many strict warnings [anonymous function does not always return a value]; r=philipp

This commit is contained in:
daniel.boelzle%sun.com 2008-01-18 12:36:40 +00:00
Родитель fcdc35cd51
Коммит ed9f5a55cd
4 изменённых файлов: 6 добавлений и 2 удалений

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

@ -285,7 +285,8 @@
// need to act accordingly.
if (this.binding.mFilterFunction &&
!this.binding.mFilterFunction(aNewItem)) {
return this.removeItem(aNewItem);
this.removeItem(aNewItem);
return;
}
// same holds true for the completed filter, which is
// currently modeled as an explicit boolean.

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

@ -471,6 +471,7 @@ calCalendarManager.prototype = {
"_blank",
"chrome,dialog=yes,alwaysRaised=yes",
paramBlock);
return null;
}
},

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

@ -255,6 +255,7 @@ calMemoryCalendar.prototype = {
modifiedItem);
// notify observers
this.mObservers.notify("onModifyItem", [modifiedItem, aOldItem]);
return null;
},
// void deleteItem( in calIItemBase aItem, in calIOperationListener aListener );

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

@ -422,7 +422,7 @@ calStorageCalendar.prototype = {
null,
"Calendar is readonly");
}
return;
return null;
}
if (!aNewItem) {
throw Components.results.NS_ERROR_INVALID_ARG;
@ -486,6 +486,7 @@ calStorageCalendar.prototype = {
// notify observers
this.mObservers.notify("onModifyItem", [modifiedItem, aOldItem]);
return null;
},
// void deleteItem( in string id, in calIOperationListener aListener );