Changeset 2126 for trunk/src/comctl32/tab.c
- Timestamp:
- Dec 18, 1999, 9:57:01 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/comctl32/tab.c
r1615 r2126 1 /* $Id: tab.c,v 1.1 7 1999-11-05 13:01:33achimha Exp $ */1 /* $Id: tab.c,v 1.18 1999-12-18 20:57:00 achimha Exp $ */ 2 2 /* 3 3 * Tab control … … 15 15 */ 16 16 17 /* WINE 991031 level */ 17 /* inconsistent: report! */ 18 /* WINE 991212 level */ 18 19 19 20 #include <string.h> … … 849 850 INT oldBkMode; 850 851 INT cx,cy; 852 BOOL deleteBrush = TRUE; 851 853 852 854 if (lStyle & TCS_BUTTONS) … … 866 868 if (!(lStyle & TCS_OWNERDRAWFIXED)) 867 869 { 870 COLORREF bk = GetSysColor(COLOR_3DHILIGHT); 868 871 DeleteObject(hbr); 869 hbr = CreateSolidBrush(GetSysColor(COLOR_3DHILIGHT)); 872 hbr = GetSysColorBrush(COLOR_SCROLLBAR); 873 SetTextColor(hdc, GetSysColor(COLOR_3DFACE)); 874 SetBkColor(hdc, bk); 875 870 876 } 871 877
Note:
See TracChangeset
for help on using the changeset viewer.