Doing a proper unicode conversion!!

This commit is contained in:
harishd%netscape.com 1999-07-16 23:36:04 +00:00
Родитель 8d979a472e
Коммит dd5aaf0aa7
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -1085,9 +1085,10 @@ nsresult CNavDTD::WillHandleStartTag(CToken* aToken,eHTMLTags aTag,nsCParserNode
theValues[index] = intValue.GetUnicode();
index++;
}
nsAutoString theTagStr(NS_EnumToTag(aTag));
CParserContext* pc=mParser->PeekContext();
void* theDocID=(pc) ? pc-> mKey : 0;
nsObserverNotifier theNotifier((PRUnichar*)NS_EnumToTag(aTag),(PRUint32)theDocID,index,theKeys,theValues);
nsObserverNotifier theNotifier(theTagStr.GetUnicode(),(PRUint32)theDocID,index,theKeys,theValues);
theDeque->FirstThat(theNotifier);
result=theNotifier.mResult;
}//if

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

@ -1085,9 +1085,10 @@ nsresult CNavDTD::WillHandleStartTag(CToken* aToken,eHTMLTags aTag,nsCParserNode
theValues[index] = intValue.GetUnicode();
index++;
}
nsAutoString theTagStr(NS_EnumToTag(aTag));
CParserContext* pc=mParser->PeekContext();
void* theDocID=(pc) ? pc-> mKey : 0;
nsObserverNotifier theNotifier((PRUnichar*)NS_EnumToTag(aTag),(PRUint32)theDocID,index,theKeys,theValues);
nsObserverNotifier theNotifier(theTagStr.GetUnicode(),(PRUint32)theDocID,index,theKeys,theValues);
theDeque->FirstThat(theNotifier);
result=theNotifier.mResult;
}//if