Changeset 2781 for trunk/src/user32/win32wbase.cpp
- Timestamp:
- Feb 14, 2000, 6:30:11 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/win32wbase.cpp
r2697 r2781 1 /* $Id: win32wbase.cpp,v 1.16 0 2000-02-09 13:42:38 sandervlExp $ */1 /* $Id: win32wbase.cpp,v 1.161 2000-02-14 17:30:11 cbratschi Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 334 334 fCXDefault = TRUE; 335 335 } 336 if (cs->style & (WS_POPUP | WS_CHILD)) 337 { 338 fXDefault = FALSE; 339 if (fCXDefault) 340 { 341 fCXDefault = FALSE; 342 cs->cx = cs->cy = 0; 343 } 344 } 336 345 if (fXDefault && !fCXDefault) fXDefault = FALSE; //CB: only x positioning doesn't work (calc.exe,cdrlabel.exe) 337 346 … … 1352 1361 { 1353 1362 dprintf(("DefWndProc: WM_SETCURSOR for %x Msg %s", Win32Hwnd, GetMsgText(HIWORD(lParam)))); 1354 if( getStyle() & WS_CHILD && !(getExStyle() & WS_EX_NOPARENTNOTIFY))1363 if((getStyle() & WS_CHILD) && !(getExStyle() & WS_EX_NOPARENTNOTIFY)) 1355 1364 { 1356 1365 if(getParent()) {
Note:
See TracChangeset
for help on using the changeset viewer.