Ignore:
Timestamp:
Sep 25, 1999, 11:27:08 AM (26 years ago)
Author:
dengert
Message:

fixed ClientToScreen adn ScreenToClient

File:
1 edited

Legend:

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

    r1036 r1039  
    1 /* $Id: win32wbase.cpp,v 1.10 1999-09-24 22:45:27 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.11 1999-09-25 09:27:07 dengert Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    12421242        WPARAM     wp   = SIZE_RESTORED;
    12431243
    1244         if (!(wpos->flags & SWP_NOCLIENTMOVE))
     1244        if (!(wpos->flags & SWP_NOMOVE) && !(wpos->flags & SWP_NOCLIENTMOVE))
    12451245            SendMessageA(WM_MOVE, 0, MAKELONG(rectClient.left, rectClient.top));
    12461246
    1247         if (!(wpos->flags & SWP_NOCLIENTSIZE))
     1247        if (!(wpos->flags & SWP_NOSIZE) && !(wpos->flags & SWP_NOCLIENTSIZE))
    12481248        {
    12491249            if (dwStyle & WS_MAXIMIZE) wp = SIZE_MAXIMIZED;
Note: See TracChangeset for help on using the changeset viewer.