Changeset 1240 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Oct 10, 1999, 10:59:41 AM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r1202 r1240 1 /* $Id: oslibwin.cpp,v 1.1 8 1999-10-08 21:25:26 cbratschiExp $ */1 /* $Id: oslibwin.cpp,v 1.19 1999-10-10 08:59:40 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 120 120 if (dwStyle & WS_CHILD_W) 121 121 { 122 //SvL: Causes crash in VPBuddy if enabled 123 #if 0 122 124 if (dwStyle & WS_BORDER_W || 123 125 dwStyle & WS_DLGFRAME_W || 124 126 dwStyle & WS_THICKFRAME_W) 125 if (!HAS_3DFRAME(*OSFrameStyle)) *OSFrameStyle |= WS_EX_WINDOWEDGE_W; 127 if (!HAS_3DFRAME(dwExStyle)) dwExStyle |= WS_EX_WINDOWEDGE_W; 128 #endif 126 129 127 130 if (dwExStyle & WS_EX_CLIENTEDGE_W || … … 132 135 *borderHeight = *borderWidth = 2; //CB: right? 133 136 } 134 135 137 if(dwStyle & WS_VSCROLL_W) 136 138 *OSFrameStyle |= FCF_VERTSCROLL; 137 139 if(dwStyle & WS_HSCROLL_W) 138 140 *OSFrameStyle |= FCF_HORZSCROLL; 139 } else 141 } 142 else 140 143 { 141 144 if((dwStyle & WS_CAPTION_W) == WS_CAPTION_W)
Note:
See TracChangeset
for help on using the changeset viewer.