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
c075d5aa
Commit
c075d5aa
authored
Mar 14, 2016
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/monthcal: MCM_GETRANGE does not return BOOL values.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
17169816
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
monthcal.c
dlls/comctl32/monthcal.c
+1
-1
monthcal.c
dlls/comctl32/tests/monthcal.c
+3
-0
No files found.
dlls/comctl32/monthcal.c
View file @
c075d5aa
...
...
@@ -1503,7 +1503,7 @@ MONTHCAL_GetRange(const MONTHCAL_INFO *infoPtr, SYSTEMTIME *range)
{
TRACE
(
"%p
\n
"
,
range
);
if
(
!
range
)
return
FALSE
;
if
(
!
range
)
return
0
;
range
[
1
]
=
infoPtr
->
maxDate
;
range
[
0
]
=
infoPtr
->
minDate
;
...
...
dlls/comctl32/tests/monthcal.c
View file @
c075d5aa
...
...
@@ -304,6 +304,9 @@ static void test_monthcal(void)
expect
(
0
,
st
[
1
].
wSecond
);
expect
(
0
,
st
[
1
].
wMilliseconds
);
limits
=
SendMessageA
(
hwnd
,
MCM_GETRANGE
,
0
,
0
);
ok
(
limits
==
0
,
"got %u
\n
"
,
limits
);
GetSystemTime
(
&
st
[
0
]);
st
[
1
]
=
st
[
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