Ignore:
Timestamp:
Feb 5, 2002, 6:59:31 PM (24 years ago)
Author:
sandervl
Message:

message handling changes

File:
1 edited

Legend:

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

    r5935 r7801  
    1 /* $Id: win32wbasepos.cpp,v 1.26 2001-06-09 14:50:22 sandervl Exp $ */
     1/* $Id: win32wbasepos.cpp,v 1.27 2002-02-05 17:59:01 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2 (nonclient/position methods)
     
    115115//    }
    116116
    117     SendInternalMessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );
     117    SendMessageA(getWindowHandle(), WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );
    118118
    119119      /* Some sanity checks */
     
    163163        params.lppos = &winposCopy;
    164164   }
    165    result = SendInternalMessageA(WM_NCCALCSIZE, calcValidRect, (LPARAM)&params );
     165   result = SendMessageA(getWindowHandle(), WM_NCCALCSIZE, calcValidRect, (LPARAM)&params );
    166166
    167167   /* If the application send back garbage, ignore it */
     
    293293        if(getStyle() & WS_MINIMIZE )
    294294        {
    295             if(!SendInternalMessageA(WM_QUERYOPEN, 0, 0L))
     295            if(!SendMessageA(getWindowHandle(), WM_QUERYOPEN, 0, 0L))
    296296                return (SWP_NOSIZE | SWP_NOMOVE);
    297297        }
Note: See TracChangeset for help on using the changeset viewer.