Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2014-12-05 12:21:02 +01:00 committed by Alexandre Julliard
parent 717385b0ba
commit ea932fbcc1
3 changed files with 5 additions and 5 deletions

View File

@ -1513,7 +1513,7 @@ static void test_CustomFontCollection(void)
ok(hr == S_OK, "got 0x%08x\n", hr); ok(hr == S_OK, "got 0x%08x\n", hr);
EXPECT_REF(idfont2, 1); EXPECT_REF(idfont2, 1);
EXPECT_REF(idfont, 1); EXPECT_REF(idfont, 1);
ok(idfont2 != idfont, "Font instances shoudl not match\n"); ok(idfont2 != idfont, "Font instances should not match\n");
idfontface2 = NULL; idfontface2 = NULL;
hr = IDWriteFont_CreateFontFace(idfont2, &idfontface2); hr = IDWriteFont_CreateFontFace(idfont2, &idfontface2);

View File

@ -1618,7 +1618,7 @@ static void test_guard_page(void)
/* test behaviour of VirtualLock - first attempt should fail */ /* test behaviour of VirtualLock - first attempt should fail */
SetLastError( 0xdeadbeef ); SetLastError( 0xdeadbeef );
success = VirtualLock( base, size ); success = VirtualLock( base, size );
ok( !success, "VirtualLock unexpectedly succeded\n" ); ok( !success, "VirtualLock unexpectedly succeeded\n" );
todo_wine todo_wine
ok( GetLastError() == STATUS_GUARD_PAGE_VIOLATION, "wrong error %u\n", GetLastError() ); ok( GetLastError() == STATUS_GUARD_PAGE_VIOLATION, "wrong error %u\n", GetLastError() );
@ -1770,7 +1770,7 @@ static void test_guard_page(void)
/* test behaviour of VirtualLock - first attempt should fail without triggering write watches */ /* test behaviour of VirtualLock - first attempt should fail without triggering write watches */
SetLastError( 0xdeadbeef ); SetLastError( 0xdeadbeef );
success = VirtualLock( base, size ); success = VirtualLock( base, size );
ok( !success, "VirtualLock unexpectedly succeded\n" ); ok( !success, "VirtualLock unexpectedly succeeded\n" );
todo_wine todo_wine
ok( GetLastError() == STATUS_GUARD_PAGE_VIOLATION, "wrong error %u\n", GetLastError() ); ok( GetLastError() == STATUS_GUARD_PAGE_VIOLATION, "wrong error %u\n", GetLastError() );

View File

@ -1863,8 +1863,8 @@ static void test_Input_mouse(void)
ok(!got_button_down, "unexpected WM_RBUTTONDOWN message\n"); ok(!got_button_down, "unexpected WM_RBUTTONDOWN message\n");
ok(!got_button_up, "unexpected WM_RBUTTONUP message\n"); ok(!got_button_up, "unexpected WM_RBUTTONUP message\n");
/* click on HTTRANSPARENT top-level window that belongs to ther thread, /* click on HTTRANSPARENT top-level window that belongs to other thread,
* threads input queues are attached */ * thread input queues are attached */
thread = CreateThread(NULL, 0, create_static_win, &thread_data, 0, &thread_id); thread = CreateThread(NULL, 0, create_static_win, &thread_data, 0, &thread_id);
ok(thread != NULL, "CreateThread failed\n"); ok(thread != NULL, "CreateThread failed\n");
hittest_no = 0; hittest_no = 0;