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
3e2edac4
Commit
3e2edac4
authored
Mar 28, 2023
by
Rémi Bernon
Committed by
Alexandre Julliard
Mar 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32u: Ignore some IME messages in default_window_proc.
parent
6fd3bd9b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
imm32.c
dlls/imm32/tests/imm32.c
+2
-2
defwnd.c
dlls/win32u/defwnd.c
+0
-2
No files found.
dlls/imm32/tests/imm32.c
View file @
3e2edac4
...
...
@@ -4440,11 +4440,11 @@ static void test_DefWindowProc(void)
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
WM_IME_NOTIFY
,
0
,
0
)
);
ok_seq
(
notify_seq
);
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
WM_IME_CONTROL
,
0
,
0
)
);
todo_wine
ok_seq
(
empty_sequence
);
ok_seq
(
empty_sequence
);
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
WM_IME_COMPOSITIONFULL
,
0
,
0
)
);
ok_seq
(
empty_sequence
);
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
WM_IME_SELECT
,
0
,
0
)
);
todo_wine
ok_seq
(
empty_sequence
);
ok_seq
(
empty_sequence
);
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
WM_IME_CHAR
,
0
,
0
)
);
ok_seq
(
empty_sequence
);
ok_ret
(
0
,
DefWindowProcW
(
hwnd
,
0x287
,
0
,
0
)
);
...
...
dlls/win32u/defwnd.c
View file @
3e2edac4
...
...
@@ -2922,9 +2922,7 @@ LRESULT default_window_proc( HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
case
WM_IME_COMPOSITION
:
case
WM_IME_STARTCOMPOSITION
:
case
WM_IME_ENDCOMPOSITION
:
case
WM_IME_SELECT
:
case
WM_IME_NOTIFY
:
case
WM_IME_CONTROL
:
{
HWND
ime_hwnd
=
get_default_ime_window
(
hwnd
);
if
(
ime_hwnd
&&
ime_hwnd
!=
NtUserGetParent
(
hwnd
))
...
...
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