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

This commit is contained in:
suresh%netscape.com 2006-05-17 02:34:55 +00:00
Родитель e4e1c8c96a
Коммит d5ad8fecbc
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);
}
},