Ignore:
Timestamp:
Jun 23, 1999, 9:45:02 PM (26 years ago)
Author:
achimha
Message:

updated comctl32 with the latest WINE bugfixes. Listview is much better now and tab control doesn't have the wrong color anymore. Many small improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/tab.c

    r94 r164  
    1 /* $Id: tab.c,v 1.4 1999-06-10 16:22:02 achimha Exp $ */
     1/* $Id: tab.c,v 1.5 1999-06-23 19:45:01 achimha Exp $ */
    22/*
    33 * Tab control
     
    775775  if (isVisible)
    776776  {
    777     HBRUSH hbr       = CreateSolidBrush (GetSysColor(COLOR_BACKGROUND));   
     777    HBRUSH hbr       = CreateSolidBrush (GetSysColor(COLOR_BTNFACE));   
    778778    HPEN   hwPen     = GetSysColorPen (COLOR_3DHILIGHT);
    779779    HPEN   hbPen     = GetSysColorPen (COLOR_BTNSHADOW);
     
    848848       * Background color.
    849849       */
    850       hbr = CreateSolidBrush(GetSysColor(COLOR_BACKGROUND));   
     850      hbr = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));   
    851851
    852852      /*
     
    10871087  RECT clientRect;
    10881088
    1089   HBRUSH brush = CreateSolidBrush(GetSysColor(COLOR_BACKGROUND));
     1089  HBRUSH brush = CreateSolidBrush(GetSysColor(COLOR_BTNFACE));
    10901090
    10911091  hdc = givenDC ? givenDC : GetDC(hwnd);
Note: See TracChangeset for help on using the changeset viewer.