Changeset 1223 for trunk/src/user32/win32wmdiclient.cpp
- Timestamp:
- Oct 9, 1999, 4:48:15 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wmdiclient.cpp
r1114 r1223 1 /* $Id: win32wmdiclient.cpp,v 1. 3 1999-10-03 20:38:02 sandervlExp $ */1 /* $Id: win32wmdiclient.cpp,v 1.4 1999-10-09 14:48:15 achimha Exp $ */ 2 2 /* 3 3 * Win32 MDI Client Window Class for OS/2 … … 126 126 127 127 case WM_MDIACTIVATE: 128 if( activeChild && activeChild->getWindowHandle() != (HWND)wParam ) 129 130 mdichild = (Win32MDIChildWindow *)GetWindowFromHandle((HWND)wParam); 131 if(mdichild) { 132 mdichild->SetWindowPos(0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE); 128 case WM_MDIACTIVATE: 129 mdichild = 0; 130 if(activeChild && activeChild->getWindowHandle() != (HWND)wParam) 131 mdichild = (Win32MDIChildWindow*)GetWindowFromHandle((HWND)wParam); 132 133 if (mdichild) 134 { 135 mdichild->SetWindowPos(0,0,0,0,0, SWP_NOSIZE | SWP_NOMOVE); 133 136 } 134 137 retvalue = 0;
Note:
See TracChangeset
for help on using the changeset viewer.