Commit 538d48e3 authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

imm32: Select current IME on input contexts when needed.

parent 1b778dbe
...@@ -3939,7 +3939,6 @@ static void test_ImmProcessKey(void) ...@@ -3939,7 +3939,6 @@ static void test_ImmProcessKey(void)
ok_eq( hkl, GetKeyboardLayout( 0 ), HKL, "%p" ); ok_eq( hkl, GetKeyboardLayout( 0 ), HKL, "%p" );
ok_ret( 0, ImmProcessKey( hwnd, old_hkl, 'A', 0, 0 ) ); ok_ret( 0, ImmProcessKey( hwnd, old_hkl, 'A', 0, 0 ) );
todo_wine
ok_seq( empty_sequence ); ok_seq( empty_sequence );
ok_eq( hkl, GetKeyboardLayout( 0 ), HKL, "%p" ); ok_eq( hkl, GetKeyboardLayout( 0 ), HKL, "%p" );
...@@ -4235,7 +4234,6 @@ static void test_ImmCreateInputContext(void) ...@@ -4235,7 +4234,6 @@ static void test_ImmCreateInputContext(void)
{ {
.hkl = expect_ime, .himc = 0/*himc[1]*/, .hkl = expect_ime, .himc = 0/*himc[1]*/,
.func = IME_SELECT, .select = 1, .func = IME_SELECT, .select = 1,
.todo = TRUE,
}, },
{0}, {0},
}; };
...@@ -4344,7 +4342,6 @@ static void test_ImmCreateInputContext(void) ...@@ -4344,7 +4342,6 @@ static void test_ImmCreateInputContext(void)
himc[1] = ImmCreateContext(); himc[1] = ImmCreateContext();
ok( !!himc[1], "ImmCreateContext failed, error %lu\n", GetLastError() ); ok( !!himc[1], "ImmCreateContext failed, error %lu\n", GetLastError() );
todo_wine
ok_seq( empty_sequence ); ok_seq( empty_sequence );
ctx = ImmLockIMC( himc[1] ); ctx = ImmLockIMC( himc[1] );
ok( !!ctx, "ImmLockIMC failed, error %lu\n", GetLastError() ); ok( !!ctx, "ImmLockIMC failed, error %lu\n", GetLastError() );
......
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