- Timestamp:
- Oct 30, 1999, 8:08:19 PM (26 years ago)
- Location:
- trunk/src/user32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r1522 r1523 1 /* $Id: oslibwin.cpp,v 1. 39 1999-10-30 15:16:58dengert Exp $ */1 /* $Id: oslibwin.cpp,v 1.40 1999-10-30 18:08:19 dengert Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 101 101 } 102 102 103 dwWinStyle &= ~ (WS_CLIPCHILDREN | WS_CLIPSIBLINGS);103 dwWinStyle &= ~WS_CLIPCHILDREN; 104 104 FCData.flCreateFlags = dwFrameStyle; 105 105 -
trunk/src/user32/win32dlg.cpp
r1516 r1523 1 /* $Id: win32dlg.cpp,v 1.2 3 1999-10-30 10:55:15 sandervlExp $ */1 /* $Id: win32dlg.cpp,v 1.24 1999-10-30 18:08:19 dengert Exp $ */ 2 2 /* 3 3 * Win32 Dialog Code for OS/2 … … 621 621 (LPCWSTR)info.className, 622 622 (LPCWSTR)info.windowName, 623 info.style | WS_CHILD ,623 info.style | WS_CHILD | WS_CLIPSIBLINGS, 624 624 info.x * xUnit / 4, 625 625 info.y * yUnit / 8, … … 645 645 classNameA, 646 646 windowNameA, 647 info.style | WS_CHILD ,647 info.style | WS_CHILD | WS_CLIPSIBLINGS, 648 648 info.x * xUnit / 4, 649 649 info.y * yUnit / 8,
Note:
See TracChangeset
for help on using the changeset viewer.