Changeset 387 for trunk/src/user32/new/static.cpp
- Timestamp:
- Jul 24, 1999, 7:10:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/static.cpp
r373 r387 1 /* $Id: static.cpp,v 1. 3 1999-07-23 16:46:29cbratschi Exp $ */1 /* $Id: static.cpp,v 1.4 1999-07-24 17:10:26 cbratschi Exp $ */ 2 2 /* 3 3 * Static control … … 589 589 590 590 ZeroMemory(&wndClass,sizeof(WNDCLASSA)); 591 wndClass.style = CS_GLOBALCLASS | CS_HREDRAW | CS_ VREDRAW | CS_PARENTDC;591 wndClass.style = CS_GLOBALCLASS | CS_HREDRAW | CS_PARENTDC; 592 592 wndClass.lpfnWndProc = (WNDPROC)StaticWndProc; 593 593 wndClass.cbClsExtra = 0; 594 594 wndClass.cbWndExtra = sizeof(STATICINFO); 595 595 wndClass.hCursor = LoadCursorA (0,IDC_ARROWA); 596 wndClass.hbrBackground = (HBRUSH) (COLOR_3DFACE+1);596 wndClass.hbrBackground = (HBRUSH)0; 597 597 wndClass.lpszClassName = STATICCLASSNAME; 598 598
Note:
See TracChangeset
for help on using the changeset viewer.