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
e4f66b04
Commit
e4f66b04
authored
Feb 21, 2019
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Avoid using the comma operator.
Signed-off-by:
Michael Stefaniuc
<
mstefani@winehq.org
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
244c15fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
imagelist.c
dlls/comctl32/imagelist.c
+2
-2
listbox.c
dlls/comctl32/listbox.c
+1
-1
No files found.
dlls/comctl32/imagelist.c
View file @
e4f66b04
...
...
@@ -1002,7 +1002,7 @@ ImageList_InternalDragDraw (HDC hdc, INT x, INT y)
imldp
.
cbSize
=
sizeof
(
imldp
);
imldp
.
himl
=
InternalDrag
.
himl
;
imldp
.
i
=
0
;
imldp
.
hdcDst
=
hdc
,
imldp
.
hdcDst
=
hdc
;
imldp
.
x
=
x
;
imldp
.
y
=
y
;
imldp
.
rgbBk
=
CLR_DEFAULT
;
...
...
@@ -1236,7 +1236,7 @@ ImageList_DrawEx (HIMAGELIST himl, INT i, HDC hdc, INT x, INT y,
imldp
.
cbSize
=
sizeof
(
imldp
);
imldp
.
himl
=
himl
;
imldp
.
i
=
i
;
imldp
.
hdcDst
=
hdc
,
imldp
.
hdcDst
=
hdc
;
imldp
.
x
=
x
;
imldp
.
y
=
y
;
imldp
.
cx
=
dx
;
...
...
dlls/comctl32/listbox.c
View file @
e4f66b04
...
...
@@ -1173,7 +1173,7 @@ static void LISTBOX_NCPaint( LB_DESCR *descr, HRGN region )
if
(
!
theme
||
!
(
exstyle
&
WS_EX_CLIENTEDGE
))
return
;
cxEdge
=
GetSystemMetrics
(
SM_CXEDGE
)
,
cxEdge
=
GetSystemMetrics
(
SM_CXEDGE
)
;
cyEdge
=
GetSystemMetrics
(
SM_CYEDGE
);
GetWindowRect
(
descr
->
self
,
&
r
);
...
...
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