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
78e7b3cf
Commit
78e7b3cf
authored
Nov 28, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: New hover value should be passed using LPARAM.
parent
ea058d22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
listview.c
dlls/comctl32/listview.c
+1
-1
listview.c
dlls/comctl32/tests/listview.c
+5
-0
No files found.
dlls/comctl32/listview.c
View file @
78e7b3cf
...
...
@@ -11134,7 +11134,7 @@ LISTVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
LISTVIEW_SetHotItem
(
infoPtr
,
(
INT
)
wParam
);
case
LVM_SETHOVERTIME
:
return
LISTVIEW_SetHoverTime
(
infoPtr
,
(
DWORD
)
w
Param
);
return
LISTVIEW_SetHoverTime
(
infoPtr
,
(
DWORD
)
l
Param
);
case
LVM_SETICONSPACING
:
return
LISTVIEW_SetIconSpacing
(
infoPtr
,
(
short
)
LOWORD
(
lParam
),
(
short
)
HIWORD
(
lParam
));
...
...
dlls/comctl32/tests/listview.c
View file @
78e7b3cf
...
...
@@ -4277,6 +4277,11 @@ static void test_hover(void)
ok_sequence
(
sequences
,
PARENT_SEQ_INDEX
,
hover_parent
,
"NM_HOVER block test"
,
TRUE
);
g_block_hover
=
FALSE
;
r
=
SendMessage
(
hwnd
,
LVM_SETHOVERTIME
,
0
,
500
);
expect
(
HOVER_DEFAULT
,
r
);
r
=
SendMessage
(
hwnd
,
LVM_GETHOVERTIME
,
0
,
0
);
expect
(
500
,
r
);
DestroyWindow
(
hwnd
);
}
...
...
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