mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
parent
ffbdb7d39e
commit
bfe959e62c
1 changed files with 5 additions and 1 deletions
|
@ -499,7 +499,11 @@ Imm32GetImeMenuItemWInterProcess(HIMC hIMC, DWORD dwFlags, DWORD dwType, LPVOID
|
|||
pView->dwFlags = dwFlags;
|
||||
pView->dwType = dwType;
|
||||
pView->dwItemCount = dwItemCount;
|
||||
pView->Parent.cbSize = (lpImeParentMenu ? sizeof(IMEMENUITEMINFOW) : 0);
|
||||
if (lpImeParentMenu)
|
||||
{
|
||||
pView->Parent = *(LPIMEMENUITEMINFOW)lpImeParentMenu;
|
||||
pView->Parent.cbSize = sizeof(IMEMENUITEMINFOW);
|
||||
}
|
||||
|
||||
if (!SendMessageW(hImeWnd, WM_IME_SYSTEM, IMS_GETIMEMENU, (LPARAM)hIMC))
|
||||
goto Quit;
|
||||
|
|
Loading…
Reference in a new issue