From 1e00973f21996701b95d620be22468a541b25799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Sun, 18 Apr 2010 17:36:11 +0000 Subject: [PATCH] grotesque copy-paste mistake svn path=/branches/reactos-yarotows/; revision=46926 --- subsystems/win32/win32k/objects/path.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subsystems/win32/win32k/objects/path.c b/subsystems/win32/win32k/objects/path.c index 4417ad4e50e..1c514418412 100644 --- a/subsystems/win32/win32k/objects/path.c +++ b/subsystems/win32/win32k/objects/path.c @@ -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; }