grotesque copy-paste mistake

svn path=/branches/reactos-yarotows/; revision=46926
This commit is contained in:
Jérôme Gardou 2010-04-18 17:36:11 +00:00
parent 4cc8e60093
commit 1e00973f21

View file

@ -2581,15 +2581,15 @@ NtGdiStrokeAndFillPath(HDC hDC)
if (pdcattr->ulDirty_ & (DIRTY_LINE | DC_PEN_DIRTY))
DC_vUpdateLineBrush(pDc);
DC_vPrepareDCsForBlit(dc, dc->rosdc.CombinedClip->rclBounds,
NULL, dc->rosdc.CombinedClip->rclBounds);
DC_vPrepareDCsForBlit(pDc, pDc->rosdc.CombinedClip->rclBounds,
NULL, pDc->rosdc.CombinedClip->rclBounds);
bRet = PATH_FillPath(pDc, pPath);
if (bRet) bRet = PATH_StrokePath(pDc, pPath);
if (bRet) PATH_EmptyPath(pPath);
PATH_UnlockPath( pPath );
DC_vFinishBlit(dc, NULL);
DC_vFinishBlit(pDc, NULL);
DC_UnlockDc(pDc);
return bRet;
}