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
e12c8c0c
Commit
e12c8c0c
authored
Sep 14, 2013
by
Thomas Faber
Committed by
Alexandre Julliard
Sep 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix build with MSVC.
parent
29aab5df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
trackbar.c
dlls/comctl32/trackbar.c
+2
-3
No files found.
dlls/comctl32/trackbar.c
View file @
e12c8c0c
...
...
@@ -616,8 +616,7 @@ static int
TRACKBAR_FillThumb
(
const
TRACKBAR_INFO
*
infoPtr
,
HDC
hdc
,
HBRUSH
hbrush
)
{
const
RECT
*
thumb
=
&
infoPtr
->
rcThumb
;
const
int
PointCount
=
6
;
POINT
points
[
PointCount
];
POINT
points
[
6
];
int
PointDepth
;
HBRUSH
oldbr
;
...
...
@@ -698,7 +697,7 @@ TRACKBAR_FillThumb (const TRACKBAR_INFO *infoPtr, HDC hdc, HBRUSH hbrush)
oldbr
=
SelectObject
(
hdc
,
hbrush
);
SetPolyFillMode
(
hdc
,
WINDING
);
Polygon
(
hdc
,
points
,
PointCount
);
Polygon
(
hdc
,
points
,
sizeof
(
points
)
/
sizeof
(
points
[
0
])
);
SelectObject
(
hdc
,
oldbr
);
return
PointDepth
;
...
...
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