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/combo.cpp

    r384 r387  
    1 /* $Id */
     1/* $Id: combo.cpp,v 1.2 1999-07-24 17:10:24 cbratschi Exp $ */
    22/*
    33 * Combo controls
     
    19631963
    19641964    ZeroMemory(&wndClass,sizeof(WNDCLASSA));
    1965     wndClass.style         = CS_GLOBALCLASS | CS_HREDRAW | CS_VREDRAW | CS_PARENTDC;
     1965    wndClass.style         = CS_GLOBALCLASS | CS_PARENTDC;
    19661966    wndClass.lpfnWndProc   = (WNDPROC)ComboWndProc;
    19671967    wndClass.cbClsExtra    = 0;
    19681968    wndClass.cbWndExtra    = sizeof(VOID*);
    19691969    wndClass.hCursor       = LoadCursorA(0,IDC_ARROWA);
    1970     wndClass.hbrBackground = (HBRUSH)(COLOR_3DFACE+1);
     1970    wndClass.hbrBackground = (HBRUSH)0;
    19711971    wndClass.lpszClassName = COMBOBOXCLASSNAME;
    19721972
Note: See TracChangeset for help on using the changeset viewer.