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
fb5dbd60
Commit
fb5dbd60
authored
Oct 03, 2012
by
Aric Stewart
Committed by
Alexandre Julliard
Oct 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
imm32: Explicitly handle all WM_IME_XXX messages in the IME class.
parent
e9f3030c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
4 deletions
+10
-4
imm.c
dlls/imm32/imm.c
+10
-4
No files found.
dlls/imm32/imm.c
View file @
fb5dbd60
...
...
@@ -2888,12 +2888,18 @@ static LRESULT WINAPI DefIME_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
case
WM_CREATE
:
case
WM_NCCREATE
:
return
TRUE
;
case
WM_IME_COMPOSITION
:
case
WM_IME_STARTCOMPOSITION
:
case
WM_IME_ENDCOMPOSITION
:
case
WM_IME_
SELECT
:
case
WM_IME_
CONTROL
:
case
WM_IME_
COMPOSITION
:
case
WM_IME_
SETCONTEXT
:
case
WM_IME_NOTIFY
:
case
WM_IME_CONTROL
:
case
WM_IME_COMPOSITIONFULL
:
case
WM_IME_SELECT
:
case
WM_IME_CHAR
:
case
WM_IME_REQUEST
:
case
WM_IME_KEYDOWN
:
case
WM_IME_KEYUP
:
{
ImmHkl
*
immHkl
=
IMM_GetImmHkl
(
GetKeyboardLayout
(
0
));
if
(
immHkl
->
UIWnd
)
...
...
@@ -2902,7 +2908,7 @@ static LRESULT WINAPI DefIME_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
}
default:
if
((
uMsg
==
WM_MSIME_RECONVERTOPTIONS
)
||
(
uMsg
==
WM_MSIME_SERVICE
)
||
(
uMsg
==
WM_MSIME_SERVICE
)
||
(
uMsg
==
WM_MSIME_MOUSE
)
||
(
uMsg
==
WM_MSIME_RECONVERTREQUEST
)
||
(
uMsg
==
WM_MSIME_RECONVERT
)
||
...
...
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