Author: hbelusca
Date: Thu Jan 8 20:35:51 2015
New Revision: 66010
URL:
http://svn.reactos.org/svn/reactos?rev=66010&view=rev
Log:
[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).
Modified:
trunk/reactos/win32ss/gdi/ntgdi/fillshap.c
Modified: trunk/reactos/win32ss/gdi/ntgdi/fillshap.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/gdi/ntgdi/fillshap…
==============================================================================
--- trunk/reactos/win32ss/gdi/ntgdi/fillshap.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/gdi/ntgdi/fillshap.c [iso-8859-1] Thu Jan 8 20:35:51 2015
@@ -1071,7 +1071,9 @@
UINT FillType)
{
PDC dc;
+#if 0
PDC_ATTR pdcattr;
+#endif
SURFACE *psurf = NULL;
EXLATEOBJ exlo;
BOOL Ret = FALSE;
@@ -1098,7 +1100,9 @@
goto cleanup;
}
+#if 0
pdcattr = dc->pdcattr;
+#endif
Pt.x = XStart;
Pt.y = YStart;