Ignore:
Timestamp:
Dec 16, 1999, 1:11:49 AM (26 years ago)
Author:
sandervl
Message:

sendmessage + hook updates + misc fixes

File:
1 edited

Legend:

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

    r1490 r2084  
    1 /* $Id: win32wbasepos.cpp,v 1.6 1999-10-28 12:00:35 sandervl Exp $ */
     1/* $Id: win32wbasepos.cpp,v 1.7 1999-12-16 00:11:47 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (nonclient/position methods)
     
    2828#include <spy.h>
    2929#include "wndmsg.h"
    30 #include "hooks.h"
    3130#include "oslibwin.h"
    3231#include "oslibutil.h"
     
    9493    if( dwStyle & WS_MINIMIZE )
    9594    {
    96         if( !SendMessageA(WM_QUERYOPEN, 0, 0L ) )
     95        if( !SendInternalMessageA(WM_QUERYOPEN, 0, 0L ) )
    9796        return (SWP_NOSIZE | SWP_NOMOVE);
    9897        swpFlags |= SWP_NOCOPYBITS;
     
    232231//    }
    233232
    234     SendMessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );
     233    SendInternalMessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );
    235234
    236235      /* Some sanity checks */
     
    276275        params.lppos = &winposCopy;
    277276   }
    278    result = SendMessageA(WM_NCCALCSIZE, calcValidRect,
     277   result = SendInternalMessageA(WM_NCCALCSIZE, calcValidRect,
    279278                         (LPARAM)&params );
    280279   *newClientRect = params.rgrc[0];
Note: See TracChangeset for help on using the changeset viewer.