Commit c39deb5d authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Removed W->A from DEFWND_ImmIsUIMessageW.

parent 0500a7d9
......@@ -299,7 +299,9 @@ static BOOL DEFWND_ImmIsUIMessageA( HWND hwndIME, UINT msg, WPARAM wParam, LPARA
static BOOL DEFWND_ImmIsUIMessageW( HWND hwndIME, UINT msg, WPARAM wParam, LPARAM lParam )
{
HINSTANCE hInstIMM = GetModuleHandleA( "imm32" );
static const WCHAR imm32W[] = {'i','m','m','3','2',0};
HINSTANCE hInstIMM = GetModuleHandleW( imm32W );
BOOL (WINAPI *pFunc)(HWND,UINT,WPARAM,LPARAM);
BOOL fRet = FALSE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment