зеркало из https://github.com/mozilla/pjs.git
Bug 117654 [Xlib] Minor issue in nsFontXlibNormal::GetWidth()
patch by Roland.Mainz@informatik.med.uni-giessen.de r=timeless
This commit is contained in:
Родитель
b8913566f5
Коммит
137cc3b3d5
|
@ -2081,9 +2081,9 @@ nsFontXlibNormal::GetWidth(const PRUnichar* aString, PRUint32 aLength)
|
||||||
aLength, p, bufLen);
|
aLength, p, bufLen);
|
||||||
|
|
||||||
if ((mFont->min_byte1 == 0) && (mFont->max_byte1 == 0))
|
if ((mFont->min_byte1 == 0) && (mFont->max_byte1 == 0))
|
||||||
textWidth = XTextWidth(mFont, (char *) buf, len);
|
textWidth = XTextWidth(mFont, p, len);
|
||||||
else
|
else
|
||||||
textWidth = XTextWidth16(mFont, buf, len / 2);
|
textWidth = XTextWidth16(mFont, (XChar2b *)p, len / 2);
|
||||||
|
|
||||||
ENCODER_BUFFER_FREE_IF_NEEDED(p, buf);
|
ENCODER_BUFFER_FREE_IF_NEEDED(p, buf);
|
||||||
return textWidth;
|
return textWidth;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче