Changeset 6166 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Jul 4, 2001, 11:29:52 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r6040 r6166 1 /* $Id: pmwindow.cpp,v 1.13 7 2001-06-17 21:08:00sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.138 2001-07-04 09:29:51 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 494 494 495 495 case WM_TIMER: 496 dprintf(("WM_TIMER %x %x time %x", win32wnd->getWindowHandle(), pWinMsg->wParam, GetTickCount())); 496 497 win32wnd->DispatchMsgA(pWinMsg); 497 498 goto RunDefWndProc; … … 751 752 dprintf(("PMFRAME:WM_ADJUSTWINDOWPOS %x %x %x (%d,%d) (%d,%d)", win32wnd->getWindowHandle(), pswp->hwnd, pswp->fl, pswp->x, pswp->y, pswp->cx, pswp->cy)); 752 753 754 if(win32wnd->IsParentChanging()) { 755 rc = 0; 756 break; 757 } 758 753 759 if(pswp->fl & SWP_NOADJUST) { 754 760 //ignore weird messages (TODO: why are they sent?) … … 877 883 878 884 dprintf(("PMFRAME:WM_WINDOWPOSCHANGED (%x) %x %x (%d,%d) (%d,%d)", mp2, win32wnd->getWindowHandle(), pswp->fl, pswp->x, pswp->y, pswp->cx, pswp->cy)); 885 if(win32wnd->IsParentChanging()) { 886 goto PosChangedEnd; 887 } 879 888 880 889 if ((pswp->fl & (SWP_SIZE | SWP_MOVE | SWP_ZORDER)) == 0)
Note:
See TracChangeset
for help on using the changeset viewer.