Changeset 2140 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Dec 19, 1999, 6:46:26 PM (26 years ago)
- File:
-
- 1 edited
-
trunk/src/user32/win32wbase.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2114 r2140 1 /* $Id: win32wbase.cpp,v 1.11 4 1999-12-18 16:31:50cbratschi Exp $ */1 /* $Id: win32wbase.cpp,v 1.115 1999-12-19 17:46:25 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 146 146 fInternalMsg = FALSE; 147 147 fNoSizeMsg = FALSE; 148 fMovingChildren = FALSE; 148 149 fIsDestroyed = FALSE; 149 150 fDestroyWindowCalled = FALSE; … … 855 856 ULONG Win32BaseWindow::MsgPosChanging(LPARAM lp) 856 857 { 857 if(fNoSizeMsg )858 if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren())) 858 859 return 1; 859 860 … … 864 865 ULONG Win32BaseWindow::MsgPosChanged(LPARAM lp) 865 866 { 866 if(fNoSizeMsg )867 if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren())) 867 868 return 1; 868 869 … … 874 875 { 875 876 dprintf(("MsgMove to (%d,%d)", x, y)); 876 if(fNoSizeMsg )877 if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren())) 877 878 return 1; 878 879
Note:
See TracChangeset
for help on using the changeset viewer.
