This commit is contained in:
waterson%netscape.com 2000-01-13 00:05:46 +00:00
Родитель eb102be9d9
Коммит 29ac20ea28
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -143,7 +143,7 @@ si_SelectDialog(const PRUnichar* szMessage, PRUnichar** pList, PRInt32* pCount)
nsCOMPtr<nsIPrompt> prompter(do_QueryInterface(webshellwindow));
PRInt32 selectedIndex;
PRBool rtnValue;
rv = prompter->Select( NULL, szMessage, *pCount, (const char **)pList, &selectedIndex, &rtnValue );
rv = prompter->Select( NULL, szMessage, *pCount, NS_CONST_CAST(const PRUnichar**, pList), &selectedIndex, &rtnValue );
*pCount = selectedIndex;
si_UserHasBeenSelected = PR_TRUE;
return rtnValue;