Changeset 1542 for trunk/src/user32/pmframe.cpp
- Timestamp:
- Nov 2, 1999, 6:07:25 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmframe.cpp
r1540 r1542 1 /* $Id: pmframe.cpp,v 1.1 6 1999-11-01 19:11:41 sandervlExp $ */1 /* $Id: pmframe.cpp,v 1.17 1999-11-02 17:07:25 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Frame Managment Code for OS/2 … … 245 245 246 246 if(!win32wnd->CanReceiveSizeMsgs()) { 247 goto RunDefFrameProc; //CB: must call def frame proc or frame control activation is broken 247 248 break; 248 249 } … … 267 268 if(wndAfter) wp.hwndInsertAfter = wndAfter->getWindowHandle(); 268 269 } 270 271 //CB: problems with profmine titlebar tracking 269 272 if(win32wnd->MsgPosChanging((LPARAM)&wp) == 0) 270 273 {//app or default window handler changed wp 271 274 dprintf(("PMFRAME: WM_ADJUSTWINDOWPOS, app changed windowpos struct")); 272 275 dprintf(("%x (%d,%d), (%d,%d)", pswp->fl, pswp->x, pswp->y, pswp->cx, pswp->cy)); 276 273 277 OSLibMapWINDOWPOStoSWPFrame(&wp, pswp, &swpOld, hParent, hwnd); 274 278 dprintf(("%x (%d,%d), (%d,%d)", pswp->fl, pswp->x, pswp->y, pswp->cx, pswp->cy)); … … 277 281 pswp->hwnd = hwnd; 278 282 279 RestoreOS2TIB(); 280 return (MRESULT)0xf; 283 goto RunDefFrameProc; //CB: must call def frame proc or frame control activation is broken 284 //RestoreOS2TIB(); 285 //return (MRESULT)0xf; 281 286 } 282 287 goto RunDefFrameProc; //CB: must call def frame proc or frame control activation is broken
Note:
See TracChangeset
for help on using the changeset viewer.