Ignore:
Timestamp:
Dec 28, 2000, 12:07:19 AM (25 years ago)
Author:
sandervl
Message:

YD: SetWindowPos bugfix (SWP_NOSENDCHANGING)

File:
1 edited

Legend:

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

    r4839 r4843  
    1 /* $Id: win32wbase.cpp,v 1.226 2000-12-24 14:54:07 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.227 2000-12-27 23:07:19 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    22242224         SWP_NOREDRAW   | SWP_NOACTIVATE | SWP_FRAMECHANGED |
    22252225         SWP_SHOWWINDOW | SWP_HIDEWINDOW | SWP_NOCOPYBITS   |
    2226          SWP_NOOWNERZORDER))
    2227     {
     2226         SWP_NOOWNERZORDER | SWP_NOSENDCHANGING | SWP_DEFERERASE |
     2227         SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE))
     2228    {
     2229        dprintf(("ERROR: SetWindowPos; UNKNOWN flag"));
    22282230        return FALSE;
     2231    }
     2232
     2233    if( fuFlags & (SWP_DEFERERASE | SWP_NOCLIENTSIZE | SWP_NOCLIENTMOVE)) {
     2234        dprintf(("WARNING: SetWindowPos; unsupported flag"));
    22292235    }
    22302236
Note: See TracChangeset for help on using the changeset viewer.