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
1dbab053
Commit
1dbab053
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 on older comctl32 versions.
parent
98260821
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 @
1dbab053
...
...
@@ -331,9 +331,15 @@ static void test_monthcal(void)
memset
(
&
st
,
0xcc
,
sizeof
(
st
));
ok
(
SendMessage
(
hwnd
,
MCM_GETRANGE
,
0
,
(
LPARAM
)
st
)
==
0
,
"No limits should be set
\n
"
);
expect
(
0
,
st
[
0
].
wYear
);
expect
(
0
,
st
[
0
].
wMonth
);
expect
(
0
,
st
[
0
].
wDay
);
ok
(
0
==
st
[
0
].
wYear
||
broken
(
1752
==
st
[
0
].
wYear
),
/* comctl32 <= 4.72 */
"Expected 0, got %d
\n
"
,
st
[
0
].
wYear
);
ok
(
0
==
st
[
0
].
wMonth
||
broken
(
9
==
st
[
0
].
wMonth
),
/* comctl32 <= 4.72 */
"Expected 0, got %d
\n
"
,
st
[
0
].
wMonth
);
ok
(
0
==
st
[
0
].
wDay
||
broken
(
14
==
st
[
0
].
wDay
),
/* comctl32 <= 4.72 */
"Expected 0, got %d
\n
"
,
st
[
0
].
wDay
);
expect
(
0
,
st
[
0
].
wDayOfWeek
);
expect
(
0
,
st
[
0
].
wHour
);
expect
(
0
,
st
[
0
].
wMinute
);
...
...
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