Francois Gouget : Assorted spelling fixes.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Dec 5 15:36:55 CST 2014


Module: wine
Branch: master
Commit: ea932fbcc15951a13a12cfca8949597ebd9d6fe9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ea932fbcc15951a13a12cfca8949597ebd9d6fe9

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Dec  5 12:21:02 2014 +0100

Assorted spelling fixes.

---

 dlls/dwrite/tests/font.c      | 2 +-
 dlls/kernel32/tests/virtual.c | 4 ++--
 dlls/user32/tests/input.c     | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dlls/dwrite/tests/font.c b/dlls/dwrite/tests/font.c
index 2fe845c..49e7154 100644
--- a/dlls/dwrite/tests/font.c
+++ b/dlls/dwrite/tests/font.c
@@ -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);
diff --git a/dlls/kernel32/tests/virtual.c b/dlls/kernel32/tests/virtual.c
index 0015f98..75e91d5 100644
--- a/dlls/kernel32/tests/virtual.c
+++ b/dlls/kernel32/tests/virtual.c
@@ -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() );
 
diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c
index 9b898d3..39afeb7 100644
--- a/dlls/user32/tests/input.c
+++ b/dlls/user32/tests/input.c
@@ -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;




More information about the wine-cvs mailing list