Ignore:
Timestamp:
Dec 19, 1999, 6:46:26 PM (26 years ago)
Author:
cbratschi
Message:

removed CS_SIZEREDRAW

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.cpp

    r2114 r2140  
    1 /* $Id: win32wbase.cpp,v 1.114 1999-12-18 16:31:50 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.115 1999-12-19 17:46:25 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    146146  fInternalMsg     = FALSE;
    147147  fNoSizeMsg       = FALSE;
     148  fMovingChildren  = FALSE;
    148149  fIsDestroyed     = FALSE;
    149150  fDestroyWindowCalled = FALSE;
     
    855856ULONG Win32BaseWindow::MsgPosChanging(LPARAM lp)
    856857{
    857     if(fNoSizeMsg)
     858    if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren()))
    858859        return 1;
    859860
     
    864865ULONG Win32BaseWindow::MsgPosChanged(LPARAM lp)
    865866{
    866     if(fNoSizeMsg)
     867    if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren()))
    867868        return 1;
    868869
     
    874875{
    875876    dprintf(("MsgMove to (%d,%d)", x, y));
    876     if(fNoSizeMsg)
     877    if(fNoSizeMsg || (getParent() && getParent()->InMovingChildren()))
    877878        return 1;
    878879
Note: See TracChangeset for help on using the changeset viewer.