mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
Assorted spelling fixes.
This commit is contained in:
parent
717385b0ba
commit
ea932fbcc1
@ -1513,7 +1513,7 @@ static void test_CustomFontCollection(void)
|
||||
ok(hr == S_OK, "got 0x%08x\n", hr);
|
||||
EXPECT_REF(idfont2, 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;
|
||||
hr = IDWriteFont_CreateFontFace(idfont2, &idfontface2);
|
||||
|
@ -1618,7 +1618,7 @@ static void test_guard_page(void)
|
||||
/* test behaviour of VirtualLock - first attempt should fail */
|
||||
SetLastError( 0xdeadbeef );
|
||||
success = VirtualLock( base, size );
|
||||
ok( !success, "VirtualLock unexpectedly succeded\n" );
|
||||
ok( !success, "VirtualLock unexpectedly succeeded\n" );
|
||||
todo_wine
|
||||
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 */
|
||||
SetLastError( 0xdeadbeef );
|
||||
success = VirtualLock( base, size );
|
||||
ok( !success, "VirtualLock unexpectedly succeded\n" );
|
||||
ok( !success, "VirtualLock unexpectedly succeeded\n" );
|
||||
todo_wine
|
||||
ok( GetLastError() == STATUS_GUARD_PAGE_VIOLATION, "wrong error %u\n", GetLastError() );
|
||||
|
||||
|
@ -1863,8 +1863,8 @@ static void test_Input_mouse(void)
|
||||
ok(!got_button_down, "unexpected WM_RBUTTONDOWN message\n");
|
||||
ok(!got_button_up, "unexpected WM_RBUTTONUP message\n");
|
||||
|
||||
/* click on HTTRANSPARENT top-level window that belongs to ther thread,
|
||||
* threads input queues are attached */
|
||||
/* click on HTTRANSPARENT top-level window that belongs to other thread,
|
||||
* thread input queues are attached */
|
||||
thread = CreateThread(NULL, 0, create_static_win, &thread_data, 0, &thread_id);
|
||||
ok(thread != NULL, "CreateThread failed\n");
|
||||
hittest_no = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user