mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:31:43 +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:
parent
a394c6bff6
commit
9a959644b3
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue