Changeset 7195 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Oct 24, 2001, 5:41:54 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r7110 r7195 1 /* $Id: pmwindow.cpp,v 1.15 6 2001-10-18 13:28:08sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.157 2001-10-24 15:41:54 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 331 331 case WM_SHOW: 332 332 dprintf(("OS2: WM_SHOW %x %d", hwnd, mp1)); 333 //SvL: When a window is made visible, then we don't receive a334 // WM_VRNENABLED message (for some weird reason)335 win32wnd->callVisibleRgnNotifyProc(TRUE);336 333 win32wnd->MsgShow((ULONG)mp1); 337 334 break; … … 695 692 { 696 693 //WM_CREATE handled during client window creation 697 dprintf(("PMFRAME: WM_CREATE %x" ));694 dprintf(("PMFRAME: WM_CREATE %x", hwnd)); 698 695 goto RunDefFrameWndProc; 699 696 } … … 972 969 } 973 970 971 //SvL: When a window is made visible, then we don't receive a 972 // WM_VRNENABLED message (for some weird reason) 973 if(pswp->fl & SWP_SHOW) { 974 win32wnd->callVisibleRgnNotifyProc(TRUE); 975 } 976 else 977 if(pswp->fl & SWP_HIDE) { 978 win32wnd->callVisibleRgnNotifyProc(FALSE); 979 } 980 974 981 if ((pswp->fl & (SWP_SIZE | SWP_MOVE | SWP_ZORDER)) == 0) 975 982 {
Note:
See TracChangeset
for help on using the changeset viewer.