This commit is contained in:
ccarlen%netscape.com 2000-11-04 16:28:50 +00:00
Родитель d015f6354e
Коммит b384e9f2a6
3 изменённых файлов: 5 добавлений и 5 удалений

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

@ -1,6 +1,6 @@
var bundle;
var profile = Components.classes["@mozilla.org/profile/manager;1"].getService();
profile = profile.QueryInterface(Components.interfaces.nsIProfile);
profile = profile.QueryInterface(Components.interfaces.nsIProfileInternal);
function handleOKButton()
{

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

@ -23,8 +23,8 @@
// The WIZARD of GORE
var profile = Components.classes["@mozilla.org/profile/manager;1"].createInstance();
profile = profile.QueryInterface(Components.interfaces.nsIProfile);
var profile = Components.classes["@mozilla.org/profile/manager;1"].getService();
profile = profile.QueryInterface(Components.interfaces.nsIProfileInternal);
// Navigation Set for pages contained in wizard
var wizardMap = {

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

@ -26,9 +26,9 @@
var selected = null;
var currProfile = "";
var profile = Components.classes["@mozilla.org/profile/manager;1"].createInstance();
var profile = Components.classes["@mozilla.org/profile/manager;1"].getService();
if (profile)
profile = profile.QueryInterface(Components.interfaces.nsIProfile);
profile = profile.QueryInterface(Components.interfaces.nsIProfileInternal);
var unset = true;
var Registry;