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
5e3c9925
Commit
5e3c9925
authored
Sep 24, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 24, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/listview: Skip some header tests on version 4.0 module.
parent
a022062c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
listview.c
dlls/comctl32/tests/listview.c
+9
-0
No files found.
dlls/comctl32/tests/listview.c
View file @
5e3c9925
...
...
@@ -1289,6 +1289,15 @@ static void test_create(void)
hList
=
CreateWindow
(
"MyListView32"
,
"Test"
,
WS_VISIBLE
,
0
,
0
,
100
,
100
,
NULL
,
NULL
,
GetModuleHandle
(
NULL
),
0
);
ok
((
HIMAGELIST
)
SendMessage
(
hList
,
LVM_GETIMAGELIST
,
0
,
0
)
==
test_create_imagelist
,
"Image list not obtained
\n
"
);
hHeader
=
(
HWND
)
SendMessage
(
hList
,
LVM_GETHEADER
,
0
,
0
);
if
(
!
IsWindow
(
hHeader
))
{
/* version 4.0 */
win_skip
(
"LVM_GETHEADER not implemented. Skipping.
\n
"
);
DestroyWindow
(
hList
);
return
;
}
ok
(
IsWindow
(
hHeader
)
&&
IsWindowVisible
(
hHeader
),
"Listview not in report mode
\n
"
);
ok
(
hHeader
==
GetDlgItem
(
hList
,
0
),
"Expected header as dialog item
\n
"
);
DestroyWindow
(
hList
);
...
...
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