mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
parent
bb2df1a0d2
commit
ac67bc595d
@ -426,13 +426,15 @@ BOOL ExtTextOut(HPS aPS, int X, int Y, UINT fuOptions, const RECTL* lprc,
|
||||
while( lLength)
|
||||
{
|
||||
ULONG thislen = min( lLength, 512);
|
||||
GpiCharStringPos( aPS, nsnull,
|
||||
pDx == nsnull ? 0 : CHS_VECTOR,
|
||||
GpiCharStringPos( aPS, 0,
|
||||
!pDx ? 0 : CHS_VECTOR,
|
||||
thislen, (PCH)aStringTemp,
|
||||
pDx == nsnull ? nsnull : (PLONG) pDx);
|
||||
!pDx ? 0 : (PLONG) pDx);
|
||||
lLength -= thislen;
|
||||
aStringTemp += thislen;
|
||||
pDx += thislen;
|
||||
if (pDx) {
|
||||
pDx += thislen;
|
||||
} /* endif */
|
||||
}
|
||||
return TRUE;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user