Changeset 387 for trunk/src/user32/new/combo.cpp
- Timestamp:
- Jul 24, 1999, 7:10:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/combo.cpp
r384 r387 1 /* $Id */1 /* $Id: combo.cpp,v 1.2 1999-07-24 17:10:24 cbratschi Exp $ */ 2 2 /* 3 3 * Combo controls … … 1963 1963 1964 1964 ZeroMemory(&wndClass,sizeof(WNDCLASSA)); 1965 wndClass.style = CS_GLOBALCLASS | CS_ HREDRAW | CS_VREDRAW | CS_PARENTDC;1965 wndClass.style = CS_GLOBALCLASS | CS_PARENTDC; 1966 1966 wndClass.lpfnWndProc = (WNDPROC)ComboWndProc; 1967 1967 wndClass.cbClsExtra = 0; 1968 1968 wndClass.cbWndExtra = sizeof(VOID*); 1969 1969 wndClass.hCursor = LoadCursorA(0,IDC_ARROWA); 1970 wndClass.hbrBackground = (HBRUSH) (COLOR_3DFACE+1);1970 wndClass.hbrBackground = (HBRUSH)0; 1971 1971 wndClass.lpszClassName = COMBOBOXCLASSNAME; 1972 1972
Note:
See TracChangeset
for help on using the changeset viewer.