Commit 355c5236 authored by James Abbatiello's avatar James Abbatiello Committed by Alexandre Julliard

Don't print uiLengthDrawn in the FIXME in DrawTextExA. Its an output

variable, not an input variable.
parent 852e73a5
......@@ -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);
if(dtp) {
FIXME("Ignores params:%d,%d,%d,%d,%d\n",dtp->cbSize,
dtp->iTabLength,dtp->iLeftMargin,dtp->iRightMargin,
dtp->uiLengthDrawn);
FIXME("Ignores params:%d,%d,%d,%d\n",dtp->cbSize,
dtp->iTabLength,dtp->iLeftMargin,dtp->iRightMargin);
}
return DrawTextA(hdc,str,count,rect,flags);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment