Changeset 4945 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Jan 14, 2001, 6:15:47 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r4848 r4945 1 /* $Id: win32wbase.cpp,v 1.22 8 2000-12-29 18:39:59sandervl Exp $ */1 /* $Id: win32wbase.cpp,v 1.229 2001-01-14 17:15:47 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 2221 2221 RECT oldClientRect = rectClient; 2222 2222 2223 if(getWindowHandle() == 0x68000010) { 2224 hParent = 0; 2225 } 2223 2226 if (fuFlags & 2224 2227 ~(SWP_NOSIZE | SWP_NOMOVE | SWP_NOZORDER | … … 2385 2388 2386 2389 MsgFormatFrame(NULL); 2390 2387 2391 if(RECT_WIDTH(rectClient) != RECT_WIDTH(*oldClientRect) || 2388 2392 RECT_HEIGHT(rectClient) != RECT_HEIGHT(*oldClientRect)) 2389 2393 { 2390 wpos->flags &= ~SWP_NOSIZE; 2394 wpos->flags &= ~(SWP_NOSIZE|SWP_NOCLIENTSIZE); 2395 wpos->cx = RECT_WIDTH(rectWindow); 2396 wpos->cy = RECT_HEIGHT(rectWindow); 2397 } 2398 2399 if(rectClient.left != oldClientRect->left || 2400 rectClient.top != oldClientRect->top) 2401 { 2402 wpos->flags &= ~(SWP_NOMOVE|SWP_NOCLIENTMOVE); 2403 wpos->x = rectWindow.left; 2404 wpos->y = rectWindow.top; 2391 2405 } 2392 2406
Note:
See TracChangeset
for help on using the changeset viewer.