Don't print uiLengthDrawn in the FIXME in DrawTextExA. Its an output
variable, not an input variable.
This commit is contained in:
parent
852e73a5ce
commit
355c523624
|
@ -342,9 +342,8 @@ INT WINAPI DrawTextExA( HDC hdc, LPCSTR str, INT count,
|
||||||
{
|
{
|
||||||
TRACE("(%d,'%s',%d,%p,0x%08x,%p)\n",hdc,str,count,rect,flags,dtp);
|
TRACE("(%d,'%s',%d,%p,0x%08x,%p)\n",hdc,str,count,rect,flags,dtp);
|
||||||
if(dtp) {
|
if(dtp) {
|
||||||
FIXME("Ignores params:%d,%d,%d,%d,%d\n",dtp->cbSize,
|
FIXME("Ignores params:%d,%d,%d,%d\n",dtp->cbSize,
|
||||||
dtp->iTabLength,dtp->iLeftMargin,dtp->iRightMargin,
|
dtp->iTabLength,dtp->iLeftMargin,dtp->iRightMargin);
|
||||||
dtp->uiLengthDrawn);
|
|
||||||
}
|
}
|
||||||
return DrawTextA(hdc,str,count,rect,flags);
|
return DrawTextA(hdc,str,count,rect,flags);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue