Bug 75993 - Make the checkvalue param on alertCheck,confirmCheck be in/out. r=valeski,sr=alecf

This commit is contained in:
ccarlen%netscape.com 2001-05-02 14:47:09 +00:00
Родитель a37a84b566
Коммит 4b073109ac
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -52,7 +52,7 @@ interface nsIPromptService : nsISupports
in wstring dialogTitle,
in wstring text,
in wstring checkMsg,
out boolean checkValue);
inout boolean checkValue);
/**
* Puts up a dialog with OK and Cancel buttons.
@ -71,7 +71,7 @@ interface nsIPromptService : nsISupports
in wstring dialogTitle,
in wstring text,
in wstring checkMsg,
out boolean checkValue);
inout boolean checkValue);
/**
* Puts up a dialog with up to 3 buttons and an optional checkbox.

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

@ -43,7 +43,7 @@ interface nsIPrompt : nsISupports
void alertCheck(in wstring dialogTitle,
in wstring text,
in wstring checkMsg,
out boolean checkValue);
inout boolean checkValue);
boolean confirm(in wstring dialogTitle,
in wstring text);
@ -51,7 +51,7 @@ interface nsIPrompt : nsISupports
boolean confirmCheck(in wstring dialogTitle,
in wstring text,
in wstring checkMsg,
out boolean checkValue);
inout boolean checkValue);
const unsigned long BUTTON_POS_0 = 1;
const unsigned long BUTTON_POS_1 = 1 << 8;