[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
This commit is contained in:
Hermès Bélusca-Maïto 2015-01-08 20:35:51 +00:00
parent a394c6bff6
commit 9a959644b3

View file

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