Changeset 1039 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Sep 25, 1999, 11:27:08 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r1036 r1039 1 /* $Id: win32wbase.cpp,v 1.1 0 1999-09-24 22:45:27 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.11 1999-09-25 09:27:07 dengert Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 1242 1242 WPARAM wp = SIZE_RESTORED; 1243 1243 1244 if (!(wpos->flags & SWP_NO CLIENTMOVE))1244 if (!(wpos->flags & SWP_NOMOVE) && !(wpos->flags & SWP_NOCLIENTMOVE)) 1245 1245 SendMessageA(WM_MOVE, 0, MAKELONG(rectClient.left, rectClient.top)); 1246 1246 1247 if (!(wpos->flags & SWP_NO CLIENTSIZE))1247 if (!(wpos->flags & SWP_NOSIZE) && !(wpos->flags & SWP_NOCLIENTSIZE)) 1248 1248 { 1249 1249 if (dwStyle & WS_MAXIMIZE) wp = SIZE_MAXIMIZED;
Note:
See TracChangeset
for help on using the changeset viewer.