Ignore:
Timestamp:
Oct 2, 1999, 6:09:13 AM (26 years ago)
Author:
sandervl
Message:

EB's window style fixes

File:
1 edited

Legend:

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

    r1093 r1105  
    1 /* $Id: win32wbase.cpp,v 1.20 1999-09-29 09:16:32 sandervl Exp $ */
     1/* $Id: win32wbase.cpp,v 1.21 1999-10-02 04:09:13 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    455455        dprintf(("WM_CREATE: WinSetWindowULong2 %X failed!!", OS2Hwnd));
    456456        return FALSE;
    457   }
    458   if(cs->style & WS_HSCROLL) {
    459         OSLibWinChangeScrollStyle(OS2HwndFrame, OSLIB_HSCROLL, 0);
    460   }
    461   if(cs->style & WS_VSCROLL) {
    462         OSLibWinChangeScrollStyle(OS2HwndFrame, OSLIB_VSCROLL, 0);
    463457  }
    464458#if 0
     
    12501244}
    12511245//******************************************************************************
     1246//******************************************************************************
     1247BOOL Win32BaseWindow::isMDIClient()
     1248{
     1249    return FALSE;
     1250}
     1251//******************************************************************************
    12521252//TODO: Not complete (flags)
    12531253//******************************************************************************
     
    13971397    switch(Msg)
    13981398    {
     1399    case WM_CLOSE:
     1400        DestroyWindow();
     1401        return 0;
     1402
    13991403    case WM_GETTEXTLENGTH:
    14001404        return wndNameLength;
     
    18651869        break;
    18661870    }
    1867     return OSLibWinShowWindow(OS2HwndFrame, showstate);
     1871    BOOL rc = OSLibWinShowWindow(OS2HwndFrame, showstate);
     1872    return rc;
    18681873}
    18691874//******************************************************************************
     
    23052310                oldval = dwStyle;
    23062311                setStyle(value);
     2312                OSLibSetWindowStyle(OS2HwndFrame, dwStyle);
    23072313                return oldval;
    23082314        case GWL_WNDPROC:
Note: See TracChangeset for help on using the changeset viewer.