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
0a6c2c86
Commit
0a6c2c86
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_SETUNICODEFORMAT and MCM_GETUNICODEFORMAT).
parent
efaa25fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
monthcal.c
dlls/comctl32/tests/monthcal.c
+8
-2
No files found.
dlls/comctl32/tests/monthcal.c
View file @
0a6c2c86
...
...
@@ -859,11 +859,17 @@ static void test_monthcal_unicode(void)
/* current setting is 1, so, should return 1 */
res
=
SendMessage
(
hwnd
,
MCM_GETUNICODEFORMAT
,
0
,
0
);
todo_wine
{
expect
(
1
,
res
);}
todo_wine
ok
(
1
==
res
||
broken
(
0
==
res
),
/* comctl32 <= 4.70 */
"Expected 1, got %d
\n
"
,
res
);
/* setting to 0, should return previous settings */
res
=
SendMessage
(
hwnd
,
MCM_SETUNICODEFORMAT
,
0
,
0
);
todo_wine
{
expect
(
1
,
res
);}
todo_wine
ok
(
1
==
res
||
broken
(
0
==
res
),
/* comctl32 <= 4.70 */
"Expected 1, got %d
\n
"
,
res
);
/* current setting is 0, so, it should return 0 */
res
=
SendMessage
(
hwnd
,
MCM_GETUNICODEFORMAT
,
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