bug 194843 - JS errors in nsPrefWindow.js. "debug" not defined. r-varga, sr-jag.

This commit is contained in:
suresh%netscape.com 2003-02-28 21:51:32 +00:00
Родитель 3cdc06fdfe
Коммит 6ba1b6e2ef
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -100,7 +100,7 @@ nsPrefWindow.prototype =
try {
hPrefWindow.okHandlers[i]();
} catch (e) {
debug("some silly ok handler /*"+hPrefWindow.okHandlers[i]+"*/ failed: "+ e);
dump("some silly ok handler /*"+hPrefWindow.okHandlers[i]+"*/ failed: "+ e);
}
hPrefWindow.savePrefs();
},
@ -112,7 +112,7 @@ nsPrefWindow.prototype =
try {
hPrefWindow.cancelHandlers[i]();
} catch (e) {
debug("some silly cancel handler /*"+hPrefWindow.cancelHandlers[i]+"*/ failed: "+ e);
dump("some silly cancel handler /*"+hPrefWindow.cancelHandlers[i]+"*/ failed: "+ e);
}
},