Changeset 1253 for trunk/src/user32/oslibwin.cpp
- Timestamp:
- Oct 11, 1999, 10:54:26 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/oslibwin.cpp
r1248 r1253 1 /* $Id: oslibwin.cpp,v 1.2 0 1999-10-11 16:04:50 cbratschiExp $ */1 /* $Id: oslibwin.cpp,v 1.21 1999-10-11 20:54:24 sandervl Exp $ */ 2 2 /* 3 3 * Window API wrappers for OS/2 … … 119 119 *OSWinStyle |= WS_TABSTOP; 120 120 121 if (dwStyle & WS_CHILD_W)121 if(dwStyle & WS_CHILD_W && !((dwStyle & WS_CAPTION_W) == WS_CAPTION_W)) 122 122 { 123 123 //SvL: Causes crash in VPBuddy if enabled -> find bug … … 140 140 141 141 } else if (*dwExStyle & WS_EX_WINDOWEDGE_W); //no border 142 //SvL: Causes crash in VPBuddy if enabled -> find bug143 #if 0144 else if (dwStyle & WS_BORDER_W)145 {146 *OSFrameStyle |= FCF_SIZEBORDER;147 *borderHeight = *borderWidth = 1;148 }149 #endif150 142 151 143 if(dwStyle & WS_VSCROLL_W) … … 153 145 if(dwStyle & WS_HSCROLL_W) 154 146 *OSFrameStyle |= FCF_HORZSCROLL; 155 } else 147 } 148 else 156 149 { 157 150 if((dwStyle & WS_CAPTION_W) == WS_CAPTION_W)
Note:
See TracChangeset
for help on using the changeset viewer.