don't share the cache and observers arrays between multiple instances.

bug 296746, r=shaver
This commit is contained in:
mvl%exedo.nl 2005-06-06 16:54:05 +00:00
parent 74e5a21386
commit 767ea18b82

View File

@ -208,16 +208,16 @@ function getCalendarManager()
function calStorageCalendar() {
this.wrappedJSObject = this;
this.mObservers = new Array();
this.mItemCache = new Array();
}
calStorageCalendar.prototype = {
//
// private members
//
mObservers: Array(),
mDB: null,
mDBTwo: null,
mItemCache: Array(),
mCalId: 0,
//