Changeset 2084 for trunk/src/user32/win32wbasepos.cpp
- Timestamp:
- Dec 16, 1999, 1:11:49 AM (26 years ago)
- 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:35sandervl Exp $ */1 /* $Id: win32wbasepos.cpp,v 1.7 1999-12-16 00:11:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (nonclient/position methods) … … 28 28 #include <spy.h> 29 29 #include "wndmsg.h" 30 #include "hooks.h"31 30 #include "oslibwin.h" 32 31 #include "oslibutil.h" … … 94 93 if( dwStyle & WS_MINIMIZE ) 95 94 { 96 if( !Send MessageA(WM_QUERYOPEN, 0, 0L ) )95 if( !SendInternalMessageA(WM_QUERYOPEN, 0, 0L ) ) 97 96 return (SWP_NOSIZE | SWP_NOMOVE); 98 97 swpFlags |= SWP_NOCOPYBITS; … … 232 231 // } 233 232 234 Send MessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );233 SendInternalMessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax ); 235 234 236 235 /* Some sanity checks */ … … 276 275 params.lppos = &winposCopy; 277 276 } 278 result = Send MessageA(WM_NCCALCSIZE, calcValidRect,277 result = SendInternalMessageA(WM_NCCALCSIZE, calcValidRect, 279 278 (LPARAM)¶ms ); 280 279 *newClientRect = params.rgrc[0];
Note:
See TracChangeset
for help on using the changeset viewer.