- Set the last arg to 1 for GetTextExtentPoint support mode.

svn path=/trunk/; revision=44751
This commit is contained in:
James Tabor 2009-12-24 07:03:46 +00:00
parent 093456d1b0
commit c61c751b19

View file

@ -173,7 +173,7 @@ GetTextExtentPointW(
LPSIZE lpSize LPSIZE lpSize
) )
{ {
return NtGdiGetTextExtent(hdc, (LPWSTR)lpString, cchString, lpSize, 0); return NtGdiGetTextExtent(hdc, (LPWSTR)lpString, cchString, lpSize, 1);
} }