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
efaa25fe
Commit
efaa25fe
authored
Oct 03, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Fix some test failures (MCM_SETCURSEL and MCM_GETCURSEL).
parent
0d726970
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
monthcal.c
dlls/comctl32/tests/monthcal.c
+9
-3
No files found.
dlls/comctl32/tests/monthcal.c
View file @
efaa25fe
...
...
@@ -773,9 +773,15 @@ static void test_monthcal_currdate(void)
expect
(
st_original
.
wYear
,
st_new
.
wYear
);
expect
(
st_original
.
wMonth
,
st_new
.
wMonth
);
expect
(
st_original
.
wDay
,
st_new
.
wDay
);
expect
(
st_original
.
wHour
,
st_new
.
wHour
);
expect
(
st_original
.
wMinute
,
st_new
.
wMinute
);
expect
(
st_original
.
wSecond
,
st_new
.
wSecond
);
ok
(
st_original
.
wHour
==
st_new
.
wHour
||
broken
(
0
==
st_new
.
wHour
),
/* comctl32 <= 4.70 */
"Expected %d, got %d
\n
"
,
st_original
.
wHour
,
st_new
.
wHour
);
ok
(
st_original
.
wMinute
==
st_new
.
wMinute
||
broken
(
0
==
st_new
.
wMinute
),
/* comctl32 <= 4.70 */
"Expected %d, got %d
\n
"
,
st_original
.
wMinute
,
st_new
.
wMinute
);
ok
(
st_original
.
wSecond
==
st_new
.
wSecond
||
broken
(
0
==
st_new
.
wSecond
),
/* comctl32 <= 4.70 */
"Expected %d, got %d
\n
"
,
st_original
.
wSecond
,
st_new
.
wSecond
);
/* lparam cannot be NULL */
res
=
SendMessage
(
hwnd
,
MCM_GETCURSEL
,
0
,
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