From 9a959644b3a69bb4db395bb0a1a2c57b2dcc8cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Thu, 8 Jan 2015 20:35:51 +0000 Subject: [PATCH] [NTGDI]: #if'ed 0 unused pdcattr variable. Associated code with it went away in revision 65912. Timo, was it on purpose? Because in other NTGDI functions (in the same file) this code remained... (I'm talking about the if (pdcattr->ulDirty_ & (DIRTY_FILL | DC_BRUSH_DIRTY)) { DC_vUpdateFillBrush(dc); } things). svn path=/trunk/; revision=66010 --- reactos/win32ss/gdi/ntgdi/fillshap.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/win32ss/gdi/ntgdi/fillshap.c b/reactos/win32ss/gdi/ntgdi/fillshap.c index 3aead0a30cc..d5c6a281e9c 100644 --- a/reactos/win32ss/gdi/ntgdi/fillshap.c +++ b/reactos/win32ss/gdi/ntgdi/fillshap.c @@ -1071,7 +1071,9 @@ NtGdiExtFloodFill( UINT FillType) { PDC dc; +#if 0 PDC_ATTR pdcattr; +#endif SURFACE *psurf = NULL; EXLATEOBJ exlo; BOOL Ret = FALSE; @@ -1098,7 +1100,9 @@ NtGdiExtFloodFill( goto cleanup; } +#if 0 pdcattr = dc->pdcattr; +#endif Pt.x = XStart; Pt.y = YStart;