Skip to content
Snippets Groups Projects
Commit 0925a730 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard
Browse files

winex11.drv: Silence ImeSetActiveContext fixme.

parent 30c6ab46
No related branches found
No related tags found
No related merge requests found
......@@ -620,7 +620,10 @@ BOOL WINAPI ImeSelect(HIMC hIMC, BOOL fSelect)
BOOL WINAPI ImeSetActiveContext(HIMC hIMC,BOOL fFlag)
{
FIXME("(%p, %x): stub\n", hIMC, fFlag);
static int once;
if (!once++)
FIXME("(%p, %x): stub\n", hIMC, fFlag);
return TRUE;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment