added a title line, not reviewed

This commit is contained in:
morse%netscape.com 2000-02-04 01:36:57 +00:00
Родитель 906f2c5982
Коммит 7b3f77d257
2 изменённых файлов: 4 добавлений и 1 удалений

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

@ -133,7 +133,9 @@ si_SelectDialog(const PRUnichar* szMessage, PRUnichar** pList, PRInt32* pCount)
nsCOMPtr<nsIPrompt> prompter(do_QueryInterface(webshellwindow)); nsCOMPtr<nsIPrompt> prompter(do_QueryInterface(webshellwindow));
PRInt32 selectedIndex; PRInt32 selectedIndex;
PRBool rtnValue; PRBool rtnValue;
rv = prompter->Select( NULL, szMessage, *pCount, NS_CONST_CAST(const PRUnichar**, pList), &selectedIndex, &rtnValue ); PRUnichar * title_string = Wallet_Localize("SelectUserTitleLine");
rv = prompter->Select( title_string, szMessage, *pCount, NS_CONST_CAST(const PRUnichar**, pList), &selectedIndex, &rtnValue );
Recycle(title_string);
*pCount = selectedIndex; *pCount = selectedIndex;
si_UserHasBeenSelected = PR_TRUE; si_UserHasBeenSelected = PR_TRUE;
return rtnValue; return rtnValue;

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

@ -41,3 +41,4 @@ SaveTheseValues = Save these values
SaveThisValue = Save this value SaveThisValue = Save this value
UserName = User Name UserName = User Name
Password = Password Password = Password
SelectUserTitleLine = Select User