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

variable, not an input variable.
This commit is contained in:
James Abbatiello 2000-06-11 19:58:49 +00:00 committed by Alexandre Julliard
parent 852e73a5ce
commit 355c523624
1 changed files with 2 additions and 3 deletions

View File

@ -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);
} }