Changeset 36

Show
Ignore:
Timestamp:
05/12/07 18:37:33 (2 years ago)
Author:
lindquist
Message:

fixed win32 Window bg color

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/bughunt/minwin/window.d

    r35 r36  
    425425        wc.hInstance = hInst; 
    426426        wc.hIcon = DefaultWindowIcon.peer; 
    427 //        wc.hIconSm = DefaultWindowSmallIcon.peer; 
     427       //wc.hIconSm = DefaultWindowSmallIcon.peer; 
    428428        wc.hCursor = LoadCursorA(cast(HINSTANCE) null, IDC_ARROW); 
    429         wc.hbrBackground = null; 
    430         //        wc.hbrBackground = cast(HBRUSH) (COLOR_WINDOW + 1); // not +1 for default 
     429        //wc.hbrBackground = null; 
     430        wc.hbrBackground = cast(HBRUSH)COLOR_WINDOW; 
    431431        wc.lpszMenuName = null; 
    432432        wc.cbClsExtra = 0;