seawood%netscape.com 2003-04-22 05:19:32 +00:00
Родитель fcc9d1f782
Коммит bf2344c5c9
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -502,7 +502,7 @@ const static PRUint8 gUnParkVo2TcMap[95] = {
NS_IMETHODIMP
nsUnicodeToJamoTTF::composeHangul(char* aResult)
{
PRInt32 length = mJamoCount;
PRInt32 length = mJamoCount, i;
nsresult rv = NS_OK;
if (!length)
@ -605,7 +605,7 @@ nsUnicodeToJamoTTF::composeHangul(char* aResult)
text[1] = text[2];
}
for (PRInt32 i = 0 ; i < length; i++)
for (i = 0 ; i < length; i++)
{
aResult[mByteOff++] = PRUint8(text[i] >> 8);
aResult[mByteOff++] = PRUint8(text[i] & 0xff);
@ -625,7 +625,7 @@ nsUnicodeToJamoTTF::composeHangul(char* aResult)
*/
fallback:
for (PRInt32 i = 0; i < length; i++)
for (i = 0; i < length; i++)
{
PRUnichar wc=0, wc2=0;
/* skip Lfill and Vfill if they're not the sole char. in a cluster */