Commit 0e90213e authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

imm32: Silence some unnecessary FIXMEs.

parent 13e94072
......@@ -396,7 +396,6 @@ static LRESULT ime_ui_notify( HIMC himc, HWND hwnd, WPARAM wparam, LPARAM lparam
case IMN_WINE_SET_COMP_STRING:
return ime_set_comp_string( himc, lparam );
default:
FIXME( "himc %p, hwnd %p, wparam %s, lparam %#Ix stub!\n", hwnd, himc, debugstr_imn(wparam), lparam );
return 0;
}
}
......@@ -503,8 +502,7 @@ BOOL WINAPI ImeSelect( HIMC himc, BOOL select )
BOOL WINAPI ImeSetActiveContext( HIMC himc, BOOL flag )
{
static int once;
if (!once++) FIXME( "himc %p, flag %#x stub!\n", himc, flag );
TRACE( "himc %p, flag %#x stub!\n", himc, flag );
return TRUE;
}
......@@ -661,9 +659,6 @@ BOOL WINAPI NotifyIME( HIMC himc, DWORD action, DWORD index, DWORD value )
}
NtUserNotifyIMEStatus( ctx->hWnd, ctx->fOpen );
break;
default:
FIXME( "himc %p, action %#lx, index %#lx, value %#lx stub!\n", himc, action, index, value );
break;
}
break;
......
......@@ -2337,14 +2337,9 @@ BOOL WINAPI ImmRegisterWordW( HKL hkl, const WCHAR *readingW, DWORD style, const
/***********************************************************************
* ImmReleaseContext (IMM32.@)
*/
BOOL WINAPI ImmReleaseContext(HWND hWnd, HIMC hIMC)
BOOL WINAPI ImmReleaseContext( HWND hwnd, HIMC himc )
{
static BOOL shown = FALSE;
if (!shown) {
FIXME("(%p, %p): stub\n", hWnd, hIMC);
shown = TRUE;
}
TRACE( "hwnd %p, himc %p\n", hwnd, himc );
return TRUE;
}
......
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