Fix minor thinkos turned up by mvl's sync script. r=shaver. Not part of the build.

This commit is contained in:
dmose%mozilla.org 2004-12-22 01:02:58 +00:00
Родитель d6ddd085bf
Коммит b459325593
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -202,7 +202,7 @@ calMemoryCalendar.prototype = {
aListener.onOperationComplete (this,
Components.results.NS_ERROR_FAILURE,
aListener.DELETE,
aId,
aItem.id,
"ID is null or is from different calendar in deleteItem");
return;
}
@ -213,7 +213,7 @@ calMemoryCalendar.prototype = {
aListener.onOperationComplete (this,
Components.results.NS_ERROR_FAILURE,
aListener.DELETE,
aId,
aItem.id,
"generation mismatch in deleteItem");
return;
}
@ -224,10 +224,10 @@ calMemoryCalendar.prototype = {
aListener.onOperationComplete (this,
Components.results.NS_OK,
aListener.DELETE,
aId,
aItem.id,
null);
// notify observers
observeDeleteItem(oldItem);
this.observeDeleteItem(oldItem);
},
// void getItem( in string id, in calIOperationListener aListener );