Assorted spelling fixes.
This commit is contained in:
parent
872035f1ab
commit
03584b4ff6
|
@ -3204,7 +3204,7 @@ static void test_editbox(void)
|
|||
ok(hwndedit2 == NULL, "Expected Edit window not to be created\n");
|
||||
ok(!IsWindow(hwndedit), "Expected Edit window to be destroyed\n");
|
||||
ok(GetFocus() == hwnd, "Expected List to be focused\n");
|
||||
/* and value greater then max item index */
|
||||
/* and value greater than max item index */
|
||||
hwndedit = (HWND)SendMessage(hwnd, LVM_EDITLABEL, 0, 0);
|
||||
ok(IsWindow(hwndedit), "Expected Edit window to be created\n");
|
||||
ok(GetFocus() == hwndedit, "Expected Edit to be focused\n");
|
||||
|
@ -3312,7 +3312,7 @@ static void test_notifyformat(void)
|
|||
r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
|
||||
expect(1, r);
|
||||
DestroyWindow(hwnd);
|
||||
/* recieving error code defaulting to ansi */
|
||||
/* receiving error code defaulting to ansi */
|
||||
notifyFormat = 0;
|
||||
hwnd = create_listview_controlW(0, hwndparentW);
|
||||
ok(hwnd != NULL, "failed to create a listview window\n");
|
||||
|
@ -3323,7 +3323,7 @@ static void test_notifyformat(void)
|
|||
r = SendMessage(header, HDM_GETUNICODEFORMAT, 0, 0);
|
||||
expect(1, r);
|
||||
DestroyWindow(hwnd);
|
||||
/* recieving ansi code from unicode window, use it */
|
||||
/* receiving ansi code from unicode window, use it */
|
||||
notifyFormat = NFR_ANSI;
|
||||
hwnd = create_listview_controlW(0, hwndparentW);
|
||||
ok(hwnd != NULL, "failed to create a listview window\n");
|
||||
|
@ -3484,9 +3484,10 @@ static BOOL load_v6_module(ULONG_PTR *pcookie)
|
|||
|
||||
if (!ret)
|
||||
{
|
||||
win_skip("A problem during context activation occured.\n");
|
||||
win_skip("A problem during context activation occurred.\n");
|
||||
DeleteFileA(manifest_name);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
/* this is a XP SP3 failure workaround */
|
||||
|
|
|
@ -160,7 +160,7 @@ static void test_GetVolumeNameForVolumeMountPointA(void)
|
|||
"GetVolumeNameForVolumeMountPointA failed on %s, last=%d\n",
|
||||
temp_path, GetLastError());
|
||||
|
||||
/* Try on a non-existent dos drive */
|
||||
/* Try on a nonexistent dos drive */
|
||||
path[2] = 0;
|
||||
for (;path[0] <= 'z'; path[0]++) {
|
||||
ret = QueryDosDeviceA( path, volume, len);
|
||||
|
@ -174,7 +174,7 @@ static void test_GetVolumeNameForVolumeMountPointA(void)
|
|||
"GetVolumeNameForVolumeMountPointA failed on %s, last=%d\n",
|
||||
path, GetLastError());
|
||||
|
||||
/* Try without trailing \ and on a non-existent dos drive */
|
||||
/* Try without trailing \ and on a nonexistent dos drive */
|
||||
path[2] = 0;
|
||||
ret = pGetVolumeNameForVolumeMountPointA(path, volume, len);
|
||||
ok(ret == FALSE && GetLastError() == ERROR_INVALID_NAME,
|
||||
|
|
|
@ -60,7 +60,7 @@ typedef struct lcid_tag_table {
|
|||
|
||||
/* en, ar and zh use SUBLANG_NEUTRAL for the rfc1766 name without the country
|
||||
all others suppress the country with SUBLANG_DEFAULT.
|
||||
For 3 letter language codes, the rfc1766 is to small for the country */
|
||||
For 3 letter language codes, the rfc1766 is too small for the country */
|
||||
|
||||
static const lcid_table_entry lcid_table[] = {
|
||||
{"e", -1, E_FAIL},
|
||||
|
|
|
@ -1321,7 +1321,7 @@ static void test_ClientId(void)
|
|||
GUID g2;
|
||||
|
||||
hr = ITfThreadMgr_QueryInterface(g_tm, &IID_ITfClientId, (LPVOID*)&pcid);
|
||||
ok(SUCCEEDED(hr),"Unable to aquire ITfClientId interface\n");
|
||||
ok(SUCCEEDED(hr),"Unable to acquire ITfClientId interface\n");
|
||||
|
||||
CoCreateGuid(&g2);
|
||||
|
||||
|
|
|
@ -320,7 +320,7 @@ static void test_sharelists(HDC winhdc)
|
|||
}
|
||||
|
||||
/* Test 3: Share display lists with a context which already shares display lists with another context.
|
||||
* According to MSDN the second paramater can't share any display lists but some buggy drivers might allow it */
|
||||
* According to MSDN the second parameter cannot share any display lists but some buggy drivers might allow it */
|
||||
hglrc3 = wglCreateContext(winhdc);
|
||||
if(hglrc3)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue