Ignore:
Timestamp:
Nov 27, 1999, 3:16:35 PM (26 years ago)
Author:
cbratschi
Message:

edit fixes, monitor API

File:
1 edited

Legend:

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

    r1849 r1860  
    1 /* $Id: win32wbase.cpp,v 1.97 1999-11-26 17:06:09 cbratschi Exp $ */
     1/* $Id: win32wbase.cpp,v 1.98 1999-11-27 14:16:35 cbratschi Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    12281228}
    12291229//******************************************************************************
    1230 //TODO: in- or excluding terminating 0?
    12311230//******************************************************************************
    12321231ULONG Win32BaseWindow::MsgGetTextLength()
     
    28862885                    return value;
    28872886
    2888                         value &= ~(WS_VISIBLE | WS_CHILD);      /* Some bits can't be changed this way (WINE) */
     2887                        value &= ~(WS_VISIBLE | WS_CHILD);      /* Some bits can't be changed this way (WINE) */
    28892888                ss.styleOld = getStyle();
    2890                         ss.styleNew = value | (ss.styleOld & (WS_VISIBLE | WS_CHILD));
     2889                        ss.styleNew = value | (ss.styleOld & (WS_VISIBLE | WS_CHILD));
    28912890                dprintf(("SetWindowLong GWL_STYLE %x old %x new style %x", getWindowHandle(), getStyle(), value));
    28922891                SendMessageA(WM_STYLECHANGING,GWL_STYLE,(LPARAM)&ss);
Note: See TracChangeset for help on using the changeset viewer.