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
ad68792a
Commit
ad68792a
authored
Mar 25, 2010
by
Mikhail Maroukhine
Committed by
Alexandre Julliard
Mar 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Remove superfluous casts.
parent
05d0787d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
listview.c
dlls/comctl32/tests/listview.c
+1
-1
monthcal.c
dlls/comctl32/tests/monthcal.c
+1
-1
No files found.
dlls/comctl32/tests/listview.c
View file @
ad68792a
...
...
@@ -3293,7 +3293,7 @@ static void test_getitemrect(void)
expect
(
18
,
rect
.
left
);
expect
(
50
,
rect
.
right
);
r
=
SendMessage
(
hwnd
,
LVM_SETIMAGELIST
,
LVSIL_STATE
,
(
LPARAM
)
NULL
);
r
=
SendMessage
(
hwnd
,
LVM_SETIMAGELIST
,
LVSIL_STATE
,
0
);
ok
(
r
!=
0
,
"should return current list handle
\n
"
);
r
=
SendMessage
(
hwnd
,
LVM_SETIMAGELIST
,
LVSIL_SMALL
,
(
LPARAM
)
himl
);
...
...
dlls/comctl32/tests/monthcal.c
View file @
ad68792a
...
...
@@ -968,7 +968,7 @@ static void test_monthcal_hittest(void)
expect
(
-
1
,
res
);
expect
(
0
,
mchit
.
uHit
);
/* test with invalid pointer */
res
=
SendMessage
(
hwnd
,
MCM_HITTEST
,
0
,
(
LPARAM
)
NULL
);
res
=
SendMessage
(
hwnd
,
MCM_HITTEST
,
0
,
0
);
expect
(
-
1
,
res
);
/* resize control to display single Calendar */
...
...
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