Changeset 1849 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 26, 1999, 6:06:09 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1845 r1849 1 /* $Id: win32wbase.cpp,v 1.9 6 1999-11-26 00:05:49 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.97 1999-11-26 17:06:09 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1648 1648 rc = GetClipBox( (HDC)wParam, &rect ); 1649 1649 if ((rc == SIMPLEREGION) || (rc == COMPLEXREGION)) 1650 FillRect( (HDC)wParam, &rect, windowClass->getBackgroundBrush()); 1650 { 1651 HBRUSH hBrush = windowClass->getBackgroundBrush(); 1652 1653 if (hBrush <= (HBRUSH)(SYSCOLOR_GetLastColor()+1)) hBrush = GetSysColorBrush(hBrush-1); 1654 1655 FillRect( (HDC)wParam, &rect, hBrush); 1656 } 1651 1657 1652 1658 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.