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
534ea8ab
Commit
534ea8ab
authored
Sep 25, 2009
by
Nikolay Sivov
Committed by
Alexandre Julliard
Sep 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/monthcal: Name MCM_SETMAXSELCOUNT parameter.
parent
548645d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
monthcal.c
dlls/comctl32/monthcal.c
+4
-4
No files found.
dlls/comctl32/monthcal.c
View file @
534ea8ab
...
...
@@ -104,7 +104,7 @@ typedef struct
int
status
;
/* See MC_SEL flags */
int
curSelDay
;
/* current selected day */
int
firstSelDay
;
/* first selected day */
int
maxSelCount
;
INT
maxSelCount
;
SYSTEMTIME
minSel
;
SYSTEMTIME
maxSel
;
DWORD
rangeValid
;
...
...
@@ -1026,12 +1026,12 @@ MONTHCAL_GetMaxSelCount(const MONTHCAL_INFO *infoPtr)
static
LRESULT
MONTHCAL_SetMaxSelCount
(
MONTHCAL_INFO
*
infoPtr
,
WPARAM
wParam
)
MONTHCAL_SetMaxSelCount
(
MONTHCAL_INFO
*
infoPtr
,
INT
max
)
{
TRACE
(
"%
lx
\n
"
,
wParam
);
TRACE
(
"%
d
\n
"
,
max
);
if
(
infoPtr
->
dwStyle
&
MCS_MULTISELECT
)
{
infoPtr
->
maxSelCount
=
wParam
;
infoPtr
->
maxSelCount
=
max
;
}
return
TRUE
;
...
...
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