Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bbafc7a6
Commit
bbafc7a6
authored
May 29, 1999
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Authors: Chris Morgan <cmorgan@wpi.edu>, James Abbatiello <abbeyj@wpi.edu>
Fixed incorrect lookup of background color.
parent
0df48785
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
tab.c
dlls/comctl32/tab.c
+3
-3
No files found.
dlls/comctl32/tab.c
View file @
bbafc7a6
...
...
@@ -774,7 +774,7 @@ static void TAB_DrawItem(
if
(
isVisible
)
{
HBRUSH
hbr
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
ACKGROUND
));
HBRUSH
hbr
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
TNFACE
));
HPEN
hwPen
=
GetSysColorPen
(
COLOR_3DHILIGHT
);
HPEN
hbPen
=
GetSysColorPen
(
COLOR_BTNSHADOW
);
HPEN
hsdPen
=
GetSysColorPen
(
COLOR_BTNTEXT
);
...
...
@@ -847,7 +847,7 @@ static void TAB_DrawItem(
/*
* Background color.
*/
hbr
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
ACKGROUND
));
hbr
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
TNFACE
));
/*
* We draw a rectangle of different sizes depending on the selection
...
...
@@ -1086,7 +1086,7 @@ static LRESULT TAB_EraseBackground(
HDC
hdc
;
RECT
clientRect
;
HBRUSH
brush
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
ACKGROUND
));
HBRUSH
brush
=
CreateSolidBrush
(
GetSysColor
(
COLOR_B
TNFACE
));
hdc
=
givenDC
?
givenDC
:
GetDC
(
hwnd
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment