Bug 827132 - Fix fallout from Bug 617532, incorporate nsITransactionManager interface changes. r=philipp

This commit is contained in:
Stefan Sitter 2013-01-12 13:39:45 +01:00
Родитель e35b45459a
Коммит a86e8156d1
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -51,11 +51,11 @@ calTransactionManager.prototype = {
},
beginBatch: function cTM_beginBatch() {
this.transactionManager.beginBatch();
this.transactionManager.beginBatch(null);
},
endBatch: function cTM_endBatch() {
this.transactionManager.endBatch();
this.transactionManager.endBatch(false);
},
checkWritable: function cTM_checkWritable(transaction) {