Changeset 7801 for trunk/src/user32/win32wbasepos.cpp
- Timestamp:
- Feb 5, 2002, 6:59:31 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbasepos.cpp
r5935 r7801 1 /* $Id: win32wbasepos.cpp,v 1.2 6 2001-06-09 14:50:22sandervl Exp $ */1 /* $Id: win32wbasepos.cpp,v 1.27 2002-02-05 17:59:01 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 (nonclient/position methods) … … 115 115 // } 116 116 117 Send InternalMessageA(WM_GETMINMAXINFO, 0, (LPARAM)&MinMax );117 SendMessageA(getWindowHandle(), WM_GETMINMAXINFO, 0, (LPARAM)&MinMax ); 118 118 119 119 /* Some sanity checks */ … … 163 163 params.lppos = &winposCopy; 164 164 } 165 result = Send InternalMessageA(WM_NCCALCSIZE, calcValidRect, (LPARAM)¶ms );165 result = SendMessageA(getWindowHandle(), WM_NCCALCSIZE, calcValidRect, (LPARAM)¶ms ); 166 166 167 167 /* If the application send back garbage, ignore it */ … … 293 293 if(getStyle() & WS_MINIMIZE ) 294 294 { 295 if(!Send InternalMessageA(WM_QUERYOPEN, 0, 0L))295 if(!SendMessageA(getWindowHandle(), WM_QUERYOPEN, 0, 0L)) 296 296 return (SWP_NOSIZE | SWP_NOMOVE); 297 297 }
Note:
See TracChangeset
for help on using the changeset viewer.