Commit da906667 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

imm32: Fix some return codes.

parent 39c905f6
...@@ -209,10 +209,10 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC) ...@@ -209,10 +209,10 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
{ {
InputContextData *data = (InputContextData*)hIMC; InputContextData *data = (InputContextData*)hIMC;
WARN("(%p, %p): semi-stub\n",hWnd,hIMC); WARN("(%p, %p): semi-stub\n", hWnd, hIMC);
if (!data) if (!hIMC)
return FALSE; return NULL;
/* /*
* WINE SPECIFIC! MAY CONFLICT * WINE SPECIFIC! MAY CONFLICT
...@@ -227,7 +227,7 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC) ...@@ -227,7 +227,7 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
* If already associated just return * If already associated just return
*/ */
if (data->hwnd == hWnd) if (data->hwnd == hWnd)
return (HIMC)data; return hIMC;
if (IsWindow(data->hwnd)) if (IsWindow(data->hwnd))
{ {
...@@ -251,7 +251,7 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC) ...@@ -251,7 +251,7 @@ HIMC WINAPI ImmAssociateContext(HWND hWnd, HIMC hIMC)
* TODO: We need to keep track of the old context associated * TODO: We need to keep track of the old context associated
* with a window and return it for now we will return NULL; * with a window and return it for now we will return NULL;
*/ */
return (HIMC)NULL; return NULL;
} }
/*********************************************************************** /***********************************************************************
......
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