Changeset 21119


Ignore:
Timestamp:
Apr 15, 2004, 6:18:55 PM (21 years ago)
Author:
sandervl
Message:

SetWindowPos: do not check for position and size redundancy

File:
1 edited

Legend:

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

    r21063 r21119  
    1 /* $Id: win32wbase.cpp,v 1.387 2004-03-16 13:56:12 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.388 2004-04-15 16:18:55 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    24742474            fuFlags &= ~SWP_HIDEWINDOW;
    24752475        }
    2476 
     2476        //SvL: These checks are causing problems in Lotus Notes 6
     2477        //     It's not entirely clear why, but child windows are not placed
     2478        //     correctly when enabling them.
     2479#if 0
    24772480        if((rectWindow.right - rectWindow.left == cx) && (rectWindow.bottom - rectWindow.top == cy)) {
    24782481            fuFlags |= SWP_NOSIZE;    /* Already the right size */
     
    24822485            fuFlags |= SWP_NOMOVE;    /* Already the right position */
    24832486        }
     2487#endif
    24842488
    24852489        if(getWindowHandle() == GetActiveWindow()) {
     
    24962500        }
    24972501    }
     2502
    24982503    /* TODO: Check hwndInsertAfter */
    24992504
Note: See TracChangeset for help on using the changeset viewer.