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
d2ace6ad
Commit
d2ace6ad
authored
Feb 12, 2002
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Feb 12, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix regression in some programs due to CLR_DEFAULT fix. Noticed in
control-spy rebar.exe.
parent
f40fb64d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
rebar.c
dlls/comctl32/rebar.c
+13
-2
No files found.
dlls/comctl32/rebar.c
View file @
d2ace6ad
...
...
@@ -20,7 +20,7 @@
/*
* Rebar control rev 8
b
* Rebar control rev 8
c
*
* Copyright 1998, 1999 Eric Kohl
*
...
...
@@ -2140,8 +2140,19 @@ REBAR_InternalEraseBkGnd (REBAR_INFO *infoPtr, WPARAM wParam, LPARAM lParam, REC
/* testing only - make background green to see it */
new
=
RGB
(
0
,
128
,
0
);
#endif
old
=
SetBkColor
(
hdc
,
new
);
}
else
{
/* In the absence of documentation for Rebar vs. CLR_NONE,
* we will use the default BtnFace color. Note documentation
* exists for Listview and Imagelist.
*/
new
=
infoPtr
->
clrBtnFace
;
#if GLATESTING
/* testing only - make background green to see it */
new
=
RGB
(
0
,
128
,
0
);
#endif
}
old
=
SetBkColor
(
hdc
,
new
);
rect
=
lpBand
->
rcBand
;
TRACE
(
"%s background color=0x%06lx, band (%d,%d)-(%d,%d), clip (%d,%d)-(%d,%d)
\n
"
,
...
...
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