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
76656994
Commit
76656994
authored
Jun 25, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Fix test failures on comctl32 < 5.80.
parent
a9f91246
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
updown.c
dlls/comctl32/tests/updown.c
+8
-2
No files found.
dlls/comctl32/tests/updown.c
View file @
76656994
...
...
@@ -426,8 +426,14 @@ static void test_updown_pos32(void)
expect
(
0
,
low
);
expect
(
1000
,
high
);
/* Set position to 500, don't check return since it is unset*/
SendMessage
(
updown
,
UDM_SETPOS32
,
0
,
500
);
/* Set position to 500 */
r
=
SendMessage
(
updown
,
UDM_SETPOS32
,
0
,
500
);
if
(
!
r
)
{
win_skip
(
"UDM_SETPOS32 and UDM_GETPOS32 need 5.80
\n
"
);
return
;
}
expect
(
100
,
r
);
/* As set by test_updown_pos() */
/* Since UDM_SETBUDDYINT was not set at creation bRet will always be true as a return from UDM_GETPOS32 */
...
...
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