[COMCTL32][USER32] EDIT: Default processing on WM_IME_SELECT/WM_IME_CONTROL (#5173)

Do default processing on WM_IME_SELECT and WM_IME_CONTROL messages in EDIT controls. CORE-11700, CORE-15289
This commit is contained in:
Katayama Hirofumi MZ 2023-03-22 09:09:38 +09:00 committed by GitHub
parent 68e6820ddf
commit be518f9f5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 0 deletions

View file

@ -4997,9 +4997,15 @@ static LRESULT CALLBACK EDIT_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPAR
break;
case WM_IME_SELECT:
#ifdef __REACTOS__
result = DefWindowProcW(hwnd, msg, wParam, lParam);
#endif
break;
case WM_IME_CONTROL:
#ifdef __REACTOS__
result = DefWindowProcW(hwnd, msg, wParam, lParam);
#endif
break;
case WM_IME_REQUEST:

View file

@ -5310,9 +5310,15 @@ LRESULT WINAPI EditWndProc_common( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP
break;
case WM_IME_SELECT:
#ifdef __REACTOS__
result = DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
#endif
break;
case WM_IME_CONTROL:
#ifdef __REACTOS__
result = DefWindowProcT(hwnd, msg, wParam, lParam, unicode);
#endif
break;
case WM_IME_REQUEST: