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
d7d6ceb4
Commit
d7d6ceb4
authored
Dec 27, 2008
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Dec 27, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Shed off some unused parameters.
parent
be7d2125
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
hotkey.c
dlls/comctl32/hotkey.c
+6
-6
No files found.
dlls/comctl32/hotkey.c
View file @
d7d6ceb4
...
...
@@ -342,7 +342,7 @@ HOTKEY_KeyDown (HOTKEY_INFO *infoPtr, DWORD key, DWORD flags)
static
LRESULT
HOTKEY_KeyUp
(
HOTKEY_INFO
*
infoPtr
,
DWORD
key
,
DWORD
flags
)
HOTKEY_KeyUp
(
HOTKEY_INFO
*
infoPtr
,
DWORD
key
)
{
BYTE
bOldMod
;
...
...
@@ -383,7 +383,7 @@ HOTKEY_KeyUp (HOTKEY_INFO *infoPtr, DWORD key, DWORD flags)
static
LRESULT
HOTKEY_KillFocus
(
HOTKEY_INFO
*
infoPtr
,
HWND
receiveFocus
)
HOTKEY_KillFocus
(
HOTKEY_INFO
*
infoPtr
)
{
infoPtr
->
bFocus
=
FALSE
;
DestroyCaret
();
...
...
@@ -424,7 +424,7 @@ HOTKEY_NCCreate (HWND hwnd, const CREATESTRUCTW *lpcs)
}
static
LRESULT
HOTKEY_SetFocus
(
HOTKEY_INFO
*
infoPtr
,
HWND
lostFocus
)
HOTKEY_SetFocus
(
HOTKEY_INFO
*
infoPtr
)
{
infoPtr
->
bFocus
=
TRUE
;
...
...
@@ -505,10 +505,10 @@ HOTKEY_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case
WM_KEYUP
:
case
WM_SYSKEYUP
:
return
HOTKEY_KeyUp
(
infoPtr
,
wParam
,
lParam
);
return
HOTKEY_KeyUp
(
infoPtr
,
wParam
);
case
WM_KILLFOCUS
:
return
HOTKEY_KillFocus
(
infoPtr
,
(
HWND
)
wParam
);
return
HOTKEY_KillFocus
(
infoPtr
);
case
WM_LBUTTONDOWN
:
return
HOTKEY_LButtonDown
(
infoPtr
);
...
...
@@ -522,7 +522,7 @@ HOTKEY_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return
0
;
case
WM_SETFOCUS
:
return
HOTKEY_SetFocus
(
infoPtr
,
(
HWND
)
wParam
);
return
HOTKEY_SetFocus
(
infoPtr
);
case
WM_SETFONT
:
return
HOTKEY_SetFont
(
infoPtr
,
(
HFONT
)
wParam
,
LOWORD
(
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