Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3dbdb311
Commit
3dbdb311
authored
Sep 07, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Sep 09, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Remove unused paramters from MONTHCAL_GetRange, MONTHCAL_MouseMove, and MONTHCAL_Create.
parent
95613fbd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
monthcal.c
dlls/comctl32/monthcal.c
+6
-6
No files found.
dlls/comctl32/monthcal.c
View file @
3dbdb311
...
...
@@ -994,7 +994,7 @@ MONTHCAL_SetRange(MONTHCAL_INFO *infoPtr, WPARAM wParam, LPARAM lParam)
static
LRESULT
MONTHCAL_GetRange
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
MONTHCAL_GetRange
(
HWND
hwnd
,
LPARAM
lParam
)
{
MONTHCAL_INFO
*
infoPtr
=
MONTHCAL_GetInfoPtr
(
hwnd
);
SYSTEMTIME
*
lprgSysTimeArray
=
(
SYSTEMTIME
*
)
lParam
;
...
...
@@ -1631,7 +1631,7 @@ MONTHCAL_Timer(MONTHCAL_INFO *infoPtr, WPARAM wParam)
static
LRESULT
MONTHCAL_MouseMove
(
MONTHCAL_INFO
*
infoPtr
,
WPARAM
wParam
,
LPARAM
lParam
)
MONTHCAL_MouseMove
(
MONTHCAL_INFO
*
infoPtr
,
LPARAM
lParam
)
{
MCHITTESTINFO
ht
;
int
oldselday
,
selday
,
hit
;
...
...
@@ -1891,7 +1891,7 @@ static LRESULT theme_changed (const MONTHCAL_INFO* infoPtr)
/* FIXME: check whether dateMin/dateMax need to be adjusted. */
static
LRESULT
MONTHCAL_Create
(
HWND
hwnd
,
WPARAM
wParam
,
LPARAM
lParam
)
MONTHCAL_Create
(
HWND
hwnd
,
LPARAM
lParam
)
{
MONTHCAL_INFO
*
infoPtr
;
...
...
@@ -2021,7 +2021,7 @@ MONTHCAL_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
MONTHCAL_SetFirstDayOfWeek
(
infoPtr
,
lParam
);
case
MCM_GETRANGE
:
return
MONTHCAL_GetRange
(
hwnd
,
wParam
,
lParam
);
return
MONTHCAL_GetRange
(
hwnd
,
lParam
);
case
MCM_SETRANGE
:
return
MONTHCAL_SetRange
(
infoPtr
,
wParam
,
lParam
);
...
...
@@ -2048,7 +2048,7 @@ MONTHCAL_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
MONTHCAL_LButtonDown
(
infoPtr
,
lParam
);
case
WM_MOUSEMOVE
:
return
MONTHCAL_MouseMove
(
infoPtr
,
wParam
,
lParam
);
return
MONTHCAL_MouseMove
(
infoPtr
,
lParam
);
case
WM_LBUTTONUP
:
return
MONTHCAL_LButtonUp
(
infoPtr
,
lParam
);
...
...
@@ -2064,7 +2064,7 @@ MONTHCAL_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
MONTHCAL_Size
(
infoPtr
,
(
SHORT
)
LOWORD
(
lParam
),
(
SHORT
)
HIWORD
(
lParam
));
case
WM_CREATE
:
return
MONTHCAL_Create
(
hwnd
,
wParam
,
lParam
);
return
MONTHCAL_Create
(
hwnd
,
lParam
);
case
WM_SETFONT
:
return
MONTHCAL_SetFont
(
infoPtr
,
(
HFONT
)
wParam
,
(
BOOL
)
lParam
);
...
...
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