Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
5393b7a6
Commit
5393b7a6
authored
Dec 06, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhelp: Use system colors instead of hardcoded colors.
parent
b966b451
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
winhelp.c
programs/winhelp/winhelp.c
+3
-3
No files found.
programs/winhelp/winhelp.c
View file @
5393b7a6
...
...
@@ -326,13 +326,13 @@ static BOOL WINHELP_RegisterWinClasses(void)
class_main
.
hInstance
=
Globals
.
hInstance
;
class_main
.
hIcon
=
LoadIcon
(
0
,
IDI_APPLICATION
);
class_main
.
hCursor
=
LoadCursor
(
0
,
IDC_ARROW
);
class_main
.
hbrBackground
=
GetStockObject
(
WHITE_BRUSH
);
class_main
.
hbrBackground
=
(
HBRUSH
)(
COLOR_WINDOW
+
1
);
class_main
.
lpszMenuName
=
0
;
class_main
.
lpszClassName
=
MAIN_WIN_CLASS_NAME
;
class_button_box
=
class_main
;
class_button_box
.
lpfnWndProc
=
WINHELP_ButtonBoxWndProc
;
class_button_box
.
hbrBackground
=
GetStockObject
(
GRAY_BRUSH
);
class_button_box
.
hbrBackground
=
(
HBRUSH
)(
COLOR_BTNFACE
+
1
);
class_button_box
.
lpszClassName
=
BUTTON_BOX_WIN_CLASS_NAME
;
class_text
=
class_main
;
...
...
@@ -342,7 +342,7 @@ static BOOL WINHELP_RegisterWinClasses(void)
class_shadow
=
class_main
;
class_shadow
.
lpfnWndProc
=
WINHELP_ShadowWndProc
;
class_shadow
.
hbrBackground
=
GetStockObject
(
GRAY_BRUSH
);
class_shadow
.
hbrBackground
=
(
HBRUSH
)(
COLOR_3DDKSHADOW
+
1
);
class_shadow
.
lpszClassName
=
SHADOW_WIN_CLASS_NAME
;
class_history
=
class_main
;
...
...
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