imm32: Have IMM class use DefWindowProc.

This commit is contained in:
Aric Stewart 2012-10-03 06:54:39 -05:00 committed by Alexandre Julliard
parent 5a9de7a498
commit e9f3030c51
1 changed files with 1 additions and 1 deletions

View File

@ -2914,6 +2914,6 @@ static LRESULT WINAPI DefIME_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
PostMessageW(immHkl->UIWnd,uMsg,wParam,lParam);
return TRUE;
}
return FALSE;
return DefWindowProcW(hwnd, uMsg, wParam, lParam);
}
}