From 8a46d0eaf54396824f7fd617e4846a8870698aa5 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 4 May 2009 10:50:31 +0200 Subject: [PATCH] Assorted spelling fixes. --- dlls/comctl32/listview.c | 2 +- dlls/riched20/tests/editor.c | 2 +- dlls/user32/tests/edit.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dlls/comctl32/listview.c b/dlls/comctl32/listview.c index 967b8671a19..14eaa2344d5 100644 --- a/dlls/comctl32/listview.c +++ b/dlls/comctl32/listview.c @@ -9816,7 +9816,7 @@ static inline LRESULT LISTVIEW_GetVersion(LISTVIEW_INFO *infoPtr) * [I] iVersion : version to be set * * RETURN: - * -1 when requested version is greater then DLL version; + * -1 when requested version is greater than DLL version; * previous version otherwise */ static LRESULT LISTVIEW_SetVersion(LISTVIEW_INFO *infoPtr, DWORD iVersion) diff --git a/dlls/riched20/tests/editor.c b/dlls/riched20/tests/editor.c index bbad7481bfc..0383d1487bf 100644 --- a/dlls/riched20/tests/editor.c +++ b/dlls/riched20/tests/editor.c @@ -3421,7 +3421,7 @@ static void test_EM_STREAMOUT_FONTTBL(void) brackCount--; fontTbl++; } - /* checks wether closing bracket is ok */ + /* checks whether closing bracket is ok */ ok(brackCount == 0, "missing closing bracket in \\fonttbl block\n"); if(!brackCount) { diff --git a/dlls/user32/tests/edit.c b/dlls/user32/tests/edit.c index 8bcd6341919..399ec4c37c6 100644 --- a/dlls/user32/tests/edit.c +++ b/dlls/user32/tests/edit.c @@ -1191,9 +1191,9 @@ static void test_edit_control_5(void) 10, 10, 1, 1, NULL, NULL, NULL, NULL); assert(hWnd); - /* size of non-child edit control is (much) bigger then requested */ + /* size of non-child edit control is (much) bigger than requested */ GetWindowRect( hWnd, &rc); - ok( rc.right - rc.left > 20, "size of the window (%d) is smaller then expected\n", + ok( rc.right - rc.left > 20, "size of the window (%d) is smaller than expected\n", rc.right - rc.left); DestroyWindow(hWnd); /* so create a parent, and give it edit controls children to test with */