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
c18f6294
Commit
c18f6294
authored
Mar 24, 2000
by
Rein Klazes
Committed by
Alexandre Julliard
Mar 24, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct the NotifyCode in the WM_COMMAND message sent by
KBD_translate_accelerator().
parent
8cd83a96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
input.c
windows/input.c
+5
-5
No files found.
windows/input.c
View file @
c18f6294
...
...
@@ -711,11 +711,11 @@ static BOOL KBD_translate_accelerator(HWND hWnd,LPMSG msg,
mesg
=
WM_COMMAND
;
}
}
if
(
mesg
==
WM_COMMAND
||
mesg
==
WM_SYSCOMMAND
)
{
TRACE_
(
accel
)(
", sending %s, wParam=%0x
\n
"
,
mesg
==
WM_COMMAND
?
"WM_COMMAND"
:
"WM_SYSCOMMAND"
,
cmd
);
if
(
mesg
==
WM_COMMAND
)
{
TRACE_
(
accel
)(
", sending WM_COMMAND, wParam=%0x
\n
"
,
0x10000
|
cmd
);
SendMessageA
(
hWnd
,
mesg
,
0x10000
|
cmd
,
0L
);
}
else
if
(
mesg
==
WM_SYSCOMMAND
)
{
TRACE_
(
accel
)(
", sending WM_SYSCOMMAND, wParam=%0x
\n
"
,
cmd
);
SendMessageA
(
hWnd
,
mesg
,
cmd
,
0x00010000L
);
}
else
...
...
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