This commit is contained in:
valeski%netscape.com 2001-04-28 00:02:08 +00:00
Родитель 7019bb2260
Коммит 63451ec4ac
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -259,7 +259,7 @@ function srGetStrBundle(path)
}
}
strBundle = strBundleService.CreateBundle(path);
strBundle = strBundleService.createBundle(path);
if (!strBundle) {
dump("\n--** strBundle createInstance failed **--\n");
}

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

@ -259,7 +259,7 @@ function srGetStrBundle(path)
}
}
strBundle = strBundleService.CreateBundle(path);
strBundle = strBundleService.createBundle(path);
if (!strBundle) {
dump("\n--** strBundle createInstance failed **--\n");
}

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

@ -35,7 +35,7 @@
try {
var stringBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"]
.getService(Components.interfaces.nsIStringBundleService);
this._bundle = stringBundleService.CreateBundle(this.src, this.appLocale);
this._bundle = stringBundleService.createBundle(this.src, this.appLocale);
}
catch (e) {
dump("Failed to get stringbundle:\n");