Ignore:
Timestamp:
Oct 11, 1999, 10:54:26 PM (26 years ago)
Author:
sandervl
Message:

Lots of changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/oslibwin.cpp

    r1248 r1253  
    1 /* $Id: oslibwin.cpp,v 1.20 1999-10-11 16:04:50 cbratschi Exp $ */
     1/* $Id: oslibwin.cpp,v 1.21 1999-10-11 20:54:24 sandervl Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    119119        *OSWinStyle |= WS_TABSTOP;
    120120
    121   if (dwStyle & WS_CHILD_W)
     121  if(dwStyle & WS_CHILD_W && !((dwStyle & WS_CAPTION_W) == WS_CAPTION_W))
    122122  {
    123123//SvL: Causes crash in VPBuddy if enabled -> find bug
     
    140140
    141141    } else if (*dwExStyle & WS_EX_WINDOWEDGE_W); //no border
    142 //SvL: Causes crash in VPBuddy if enabled -> find bug
    143 #if 0
    144     else if (dwStyle & WS_BORDER_W)
    145     {
    146       *OSFrameStyle |= FCF_SIZEBORDER;
    147       *borderHeight = *borderWidth = 1;
    148     }
    149 #endif
    150142
    151143    if(dwStyle & WS_VSCROLL_W)
     
    153145    if(dwStyle & WS_HSCROLL_W)
    154146          *OSFrameStyle |= FCF_HORZSCROLL;
    155   } else
     147  }
     148  else
    156149  {
    157150    if((dwStyle & WS_CAPTION_W) == WS_CAPTION_W)
Note: See TracChangeset for help on using the changeset viewer.