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
76ba45e5
Commit
76ba45e5
authored
Sep 20, 2010
by
Austin English
Committed by
Alexandre Julliard
Sep 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Fix compiler warnings on Clang.
parent
e2755c13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
listview.c
dlls/comctl32/listview.c
+6
-6
No files found.
dlls/comctl32/listview.c
View file @
76ba45e5
...
...
@@ -9842,7 +9842,7 @@ static LRESULT LISTVIEW_LButtonDblClk(LISTVIEW_INFO *infoPtr, WORD wKey, INT x,
{
LVHITTESTINFO
htInfo
;
TRACE
(
"(key=%hu, X=%
hu, Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu, X=%
u, Y=%
u)
\n
"
,
wKey
,
x
,
y
);
/* Cancel the item edition if any */
if
(
infoPtr
->
itemEdit
.
fEnabled
)
...
...
@@ -9886,7 +9886,7 @@ static LRESULT LISTVIEW_LButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, IN
POINT
pt
=
{
x
,
y
};
INT
nItem
;
TRACE
(
"(key=%hu, X=%
hu, Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu, X=%
u, Y=%
u)
\n
"
,
wKey
,
x
,
y
);
/* send NM_RELEASEDCAPTURE notification */
if
(
!
notify
(
infoPtr
,
NM_RELEASEDCAPTURE
))
return
0
;
...
...
@@ -10002,7 +10002,7 @@ static LRESULT LISTVIEW_LButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT
{
LVHITTESTINFO
lvHitTestInfo
;
TRACE
(
"(key=%hu, X=%
hu, Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu, X=%
u, Y=%
u)
\n
"
,
wKey
,
x
,
y
);
if
(
!
infoPtr
->
bLButtonDown
)
return
0
;
...
...
@@ -10462,7 +10462,7 @@ static LRESULT LISTVIEW_RButtonDblClk(const LISTVIEW_INFO *infoPtr, WORD wKey, I
{
LVHITTESTINFO
lvHitTestInfo
;
TRACE
(
"(key=%hu,X=%
hu,Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu,X=%
u,Y=%
u)
\n
"
,
wKey
,
x
,
y
);
/* send NM_RELEASEDCAPTURE notification */
if
(
!
notify
(
infoPtr
,
NM_RELEASEDCAPTURE
))
return
0
;
...
...
@@ -10493,7 +10493,7 @@ static LRESULT LISTVIEW_RButtonDown(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, IN
LVHITTESTINFO
lvHitTestInfo
;
INT
nItem
;
TRACE
(
"(key=%hu,X=%
hu,Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu,X=%
u,Y=%
u)
\n
"
,
wKey
,
x
,
y
);
/* send NM_RELEASEDCAPTURE notification */
if
(
!
notify
(
infoPtr
,
NM_RELEASEDCAPTURE
))
return
0
;
...
...
@@ -10541,7 +10541,7 @@ static LRESULT LISTVIEW_RButtonUp(LISTVIEW_INFO *infoPtr, WORD wKey, INT x, INT
LVHITTESTINFO
lvHitTestInfo
;
POINT
pt
;
TRACE
(
"(key=%hu,X=%
hu,Y=%h
u)
\n
"
,
wKey
,
x
,
y
);
TRACE
(
"(key=%hu,X=%
u,Y=%
u)
\n
"
,
wKey
,
x
,
y
);
if
(
!
infoPtr
->
bRButtonDown
)
return
0
;
...
...
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