Bug 117654 [Xlib] Minor issue in nsFontXlibNormal::GetWidth()

patch by Roland.Mainz@informatik.med.uni-giessen.de r=timeless
This commit is contained in:
timeless%mac.com 2002-01-02 00:19:14 +00:00
Родитель 2ba4c7d57c
Коммит 27f57ebbc8
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -2081,9 +2081,9 @@ nsFontXlibNormal::GetWidth(const PRUnichar* aString, PRUint32 aLength)
aLength, p, bufLen);
if ((mFont->min_byte1 == 0) && (mFont->max_byte1 == 0))
textWidth = XTextWidth(mFont, (char *) buf, len);
textWidth = XTextWidth(mFont, p, len);
else
textWidth = XTextWidth16(mFont, buf, len / 2);
textWidth = XTextWidth16(mFont, (XChar2b *)p, len / 2);
ENCODER_BUFFER_FREE_IF_NEEDED(p, buf);
return textWidth;