Changeset 7294 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Nov 7, 2001, 4:36:10 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r7241 r7294 1 /* $Id: win32wbase.cpp,v 1.29 7 2001-10-28 10:38:13sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.298 2001-11-07 15:36:10 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2471 2471 return TRUE; 2472 2472 } 2473 2473 2474 #if 0 2474 2475 /* Fix redundant flags */ … … 2483 2484 } 2484 2485 2485 if(cx < 0) cx = 0;2486 if(cy < 0) cy = 0;2486 //// if(cx < 0) cx = 0; 2487 //// if(cy < 0) cy = 0; 2487 2488 2488 2489 if((rectWindow.right - rectWindow.left == cx) && (rectWindow.bottom - rectWindow.top == cy)) { … … 2506 2507 } 2507 2508 } 2509 /* TODO: Check hwndInsertAfter */ 2510 2508 2511 #endif 2509 2512 … … 2646 2649 wpos->y = rectWindow.top; 2647 2650 } 2648 2651 2649 2652 WINDOWPOS wpOld = *wpos; 2650 SendInternalMessageA(WM_WINDOWPOSCHANGING, 0, (LPARAM)wpos); 2653 if(!(wpos->flags & SWP_NOSENDCHANGING)) 2654 SendInternalMessageA(WM_WINDOWPOSCHANGING, 0, (LPARAM)wpos); 2651 2655 2652 2656 if ((wpos->hwndInsertAfter != wpOld.hwndInsertAfter) || … … 3447 3451 3448 3452 hwndActive = OSLibWinQueryActiveWindow(); 3449 3450 3453 return OS2ToWin32Handle(hwndActive); 3451 3454 }
Note:
See TracChangeset
for help on using the changeset viewer.