mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user