Changeset 1227 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Oct 9, 1999, 5:36:58 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r1210 r1227 1 /* $Id: pmwindow.cpp,v 1.2 3 1999-10-09 11:03:23sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.24 1999-10-09 15:36:58 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 298 298 classStyle = win32wnd->getClass()->getStyle(); 299 299 300 #if 0301 if ((yDelta != 0) && ((classStyle & CS_VREDRAW_W) ||302 ((classStyle & CS_HREDRAW_W) && (pswp->cx != pswpo->cx))))303 #else304 300 if (yDelta != 0 || xDelta != 0) 305 #endif306 301 { 307 302 HENUM henum = WinBeginEnumWindows(pswp->hwnd); … … 326 321 #endif 327 322 328 swp[i].y += yDelta; 329 330 if (i == 9) 323 if(swp[i].y != 0) { 324 //child window at offset <> 0 from client area -> offset now changes 325 swp[i].y += yDelta; 326 swp[i].fl &= ~SWP_NOREDRAW; 327 } 328 //else child window with the same start coorindates as the client area 329 //The app should resize it. 330 331 if (i == 9) 331 332 { 332 333 WinSetMultWindowPos(GetThreadHAB(), swp, 10); … … 355 356 win32wnd->MsgPosChanged((LPARAM)&wp); 356 357 357 358 goto RunDefWndProc; 358 359 // break; 359 360 }
Note:
See TracChangeset
for help on using the changeset viewer.