Bug 562588 - comparison between signed and unsigned integer expressions in mozSpellChecker::InitSpellCheckDictionaryMap, r=bz

This commit is contained in:
timeless@mozdev.org 2010-04-28 23:40:00 -07:00
Родитель c55c2e623a
Коммит cf53122bd8
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -473,7 +473,6 @@ mozSpellChecker::InitSpellCheckDictionaryMap()
{
nsresult rv;
PRBool hasMoreEngines;
PRInt32 i;
nsTArray<nsCString> contractIds;
nsCOMPtr<nsICategoryManager> catMgr = do_GetService(NS_CATEGORYMANAGER_CONTRACTID);
@ -509,7 +508,7 @@ mozSpellChecker::InitSpellCheckDictionaryMap()
// Retrieve dictionaries from all available spellcheckers and
// fill mDictionariesMap hash (only the first dictionary with the
// each name is used).
for (i=0;i < PRInt32(contractIds.Length());i++){
for (PRUint32 i=0;i < contractIds.Length();i++){
PRUint32 count,k;
PRUnichar **words;