Ignore:
Timestamp:
Jul 24, 1999, 7:10:26 PM (26 years ago)
Author:
cbratschi
Message:

edit control

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/static.cpp

    r373 r387  
    1 /* $Id: static.cpp,v 1.3 1999-07-23 16:46:29 cbratschi Exp $ */
     1/* $Id: static.cpp,v 1.4 1999-07-24 17:10:26 cbratschi Exp $ */
    22/*
    33 * Static control
     
    589589
    590590    ZeroMemory(&wndClass,sizeof(WNDCLASSA));
    591     wndClass.style         = CS_GLOBALCLASS | CS_HREDRAW | CS_VREDRAW | CS_PARENTDC;
     591    wndClass.style         = CS_GLOBALCLASS | CS_HREDRAW | CS_PARENTDC;
    592592    wndClass.lpfnWndProc   = (WNDPROC)StaticWndProc;
    593593    wndClass.cbClsExtra    = 0;
    594594    wndClass.cbWndExtra    = sizeof(STATICINFO);
    595595    wndClass.hCursor       = LoadCursorA (0,IDC_ARROWA);
    596     wndClass.hbrBackground = (HBRUSH)(COLOR_3DFACE+1);
     596    wndClass.hbrBackground = (HBRUSH)0;
    597597    wndClass.lpszClassName = STATICCLASSNAME;
    598598
Note: See TracChangeset for help on using the changeset viewer.