Changeset 821 for trunk/src/user32/new/win32wmdiclient.cpp
- Timestamp:
- Sep 4, 1999, 9:42:30 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/new/win32wmdiclient.cpp
r808 r821 1 /* $Id: win32wmdiclient.cpp,v 1. 4 1999-09-03 15:09:46sandervl Exp $ */1 /* $Id: win32wmdiclient.cpp,v 1.5 1999-09-04 19:42:29 sandervl Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 819 819 820 820 ZeroMemory(&wndClass,sizeof(WNDCLASSA)); 821 wndClass.style = CS_GLOBALCLASS | CS_HREDRAW | CS_VREDRAW | CS_PARENTDC | CS_DBLCLKS;821 wndClass.style = CS_GLOBALCLASS; 822 822 wndClass.lpfnWndProc = (WNDPROC)MDIClientWndProc; 823 823 wndClass.cbClsExtra = 0; 824 824 wndClass.cbWndExtra = 0; 825 825 wndClass.hCursor = 0; 826 wndClass.hbrBackground = (HBRUSH) 0;826 wndClass.hbrBackground = (HBRUSH)LTGRAY_BRUSH; 827 827 wndClass.lpszClassName = MDICLIENTCLASSNAMEA; 828 828
Note:
See TracChangeset
for help on using the changeset viewer.