Bug 316225 - Add 'var' in some utils to quell strict warnings.

ChatZilla only.
r=samuel
p=gijskruitbosch+bugs@gmail.com (Gijs Kruitbosch)
This commit is contained in:
silver%warwickcompsoc.co.uk 2005-11-19 22:23:51 +00:00
Родитель edc6cfbca8
Коммит cc59221a10
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -1039,8 +1039,8 @@ function confirmEx(msg, buttons, defaultButton, checkText,
if (!checkVal)
checkVal = new Object();
rv = ps.confirmEx(parent, title, msg, buttonFlags, buttonText[0],
buttonText[1], buttonText[2], checkText, checkVal);
var rv = ps.confirmEx(parent, title, msg, buttonFlags, buttonText[0],
buttonText[1], buttonText[2], checkText, checkVal);
return rv;
}
@ -1070,7 +1070,7 @@ function promptPassword(msg, initial, parent, title)
parent = window;
if (!title)
title = MSG_PROMPT;
rv = { value: initial };
var rv = { value: initial };
if (!ps.promptPassword (parent, title, msg, rv, null, {value: null}))
return null;