imm32/tests: Add another combination which should fail.

This commit is contained in:
Jeff Zaroyko 2009-09-29 21:33:04 +10:00 committed by Alexandre Julliard
parent 29c9c7f50d
commit 26f380941b
1 changed files with 5 additions and 0 deletions

View File

@ -287,6 +287,11 @@ static void test_ImmSetCompositionString(void)
todo_wine
ok(!ret, "ImmSetCompositionStringW() succeeded.\n");
ret = ImmSetCompositionStringW(imc, SCS_SETSTR | SCS_CHANGEATTR | SCS_CHANGECLAUSE,
NULL, 0, NULL, 0);
todo_wine
ok(!ret, "ImmSetCompositionStringW() succeeded.\n");
ImmReleaseContext(hwnd, imc);
}