Changeset 1523 for trunk/src


Ignore:
Timestamp:
Oct 30, 1999, 8:08:19 PM (26 years ago)
Author:
dengert
Message:

fix last fix (dialogs)

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:58 dengert Exp $ */
     1/* $Id: oslibwin.cpp,v 1.40 1999-10-30 18:08:19 dengert Exp $ */
    22/*
    33 * Window API wrappers for OS/2
     
    101101  }
    102102
    103   dwWinStyle &= ~(WS_CLIPCHILDREN | WS_CLIPSIBLINGS);
     103  dwWinStyle &= ~WS_CLIPCHILDREN;
    104104  FCData.flCreateFlags = dwFrameStyle;
    105105
  • trunk/src/user32/win32dlg.cpp

    r1516 r1523  
    1 /* $Id: win32dlg.cpp,v 1.23 1999-10-30 10:55:15 sandervl Exp $ */
     1/* $Id: win32dlg.cpp,v 1.24 1999-10-30 18:08:19 dengert Exp $ */
    22/*
    33 * Win32 Dialog Code for OS/2
     
    621621                                        (LPCWSTR)info.className,
    622622                                        (LPCWSTR)info.windowName,
    623                                         info.style | WS_CHILD,
     623                                        info.style | WS_CHILD | WS_CLIPSIBLINGS,
    624624                                        info.x * xUnit / 4,
    625625                                        info.y * yUnit / 8,
     
    645645                                        classNameA,
    646646                                        windowNameA,
    647                                         info.style | WS_CHILD,
     647                                        info.style | WS_CHILD | WS_CLIPSIBLINGS,
    648648                                        info.x * xUnit / 4,
    649649                                        info.y * yUnit / 8,
Note: See TracChangeset for help on using the changeset viewer.