Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2009-05-04 10:50:31 +02:00 committed by Alexandre Julliard
parent 51fbc569d6
commit 8a46d0eaf5
3 changed files with 4 additions and 4 deletions

View File

@ -9816,7 +9816,7 @@ static inline LRESULT LISTVIEW_GetVersion(LISTVIEW_INFO *infoPtr)
* [I] iVersion : version to be set * [I] iVersion : version to be set
* *
* RETURN: * RETURN:
* -1 when requested version is greater then DLL version; * -1 when requested version is greater than DLL version;
* previous version otherwise * previous version otherwise
*/ */
static LRESULT LISTVIEW_SetVersion(LISTVIEW_INFO *infoPtr, DWORD iVersion) static LRESULT LISTVIEW_SetVersion(LISTVIEW_INFO *infoPtr, DWORD iVersion)

View File

@ -3421,7 +3421,7 @@ static void test_EM_STREAMOUT_FONTTBL(void)
brackCount--; brackCount--;
fontTbl++; fontTbl++;
} }
/* checks wether closing bracket is ok */ /* checks whether closing bracket is ok */
ok(brackCount == 0, "missing closing bracket in \\fonttbl block\n"); ok(brackCount == 0, "missing closing bracket in \\fonttbl block\n");
if(!brackCount) if(!brackCount)
{ {

View File

@ -1191,9 +1191,9 @@ static void test_edit_control_5(void)
10, 10, 1, 1, 10, 10, 1, 1,
NULL, NULL, NULL, NULL); NULL, NULL, NULL, NULL);
assert(hWnd); 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); 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); rc.right - rc.left);
DestroyWindow(hWnd); DestroyWindow(hWnd);
/* so create a parent, and give it edit controls children to test with */ /* so create a parent, and give it edit controls children to test with */