Commit 6394a153 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent 9769816b
......@@ -129,7 +129,7 @@ static void MipMapCreationTest()
/* Fourth mipmap creation test: same as above with a different texture
size.
The purpose is to verify that the number of generated mipmaps is
dependant on the smallest dimension. */
dependent on the smallest dimension. */
memset(&ddsd, 0, sizeof(DDSURFACEDESC));
ddsd.dwSize = sizeof(ddsd);
ddsd.dwFlags = DDSD_CAPS | DDSD_WIDTH | DDSD_HEIGHT;
......
......@@ -210,7 +210,7 @@ static void test_empty_image() {
LARGE_INTEGER seekto;
short type;
/* Empty image. Happens occasionaly in VB programs. */
/* Empty image. Happens occasionally in VB programs. */
hglob = GlobalAlloc (0, 8);
data = GlobalLock (hglob);
memcpy(data,"lt\0\0",4);
......
......@@ -2818,7 +2818,7 @@ HRESULT WINAPI VarAdd(LPVARIANT left, LPVARIANT right, LPVARIANT result)
V_VT(result) = VT_NULL;
goto end;
case VT_DISPATCH:
FIXME("can not handle variant type VT_DISPATCH\n");
FIXME("cannot handle variant type VT_DISPATCH\n");
hres = DISP_E_TYPEMISMATCH;
goto end;
case VT_EMPTY:
......
......@@ -547,7 +547,7 @@ static void V4l_GetFrame(Capture * capBox, unsigned char ** pInput)
while ((retval = read(capBox->fd, capBox->grab_data, capBox->imagesize)) == -1)
if (errno != EAGAIN) break;
if (retval == -1)
WARN("Error occured while reading from device: %s\n", strerror(errno));
WARN("Error occurred while reading from device: %s\n", strerror(errno));
*pInput = capBox->grab_data;
}
}
......
......@@ -258,7 +258,7 @@ static void test_GetDisplayName(void)
if (hTestFile == INVALID_HANDLE_VALUE) return;
CloseHandle(hTestFile);
/* Getting a itemidlist for the file. */
/* Getting an itemidlist for the file. */
hr = SHGetDesktopFolder(&psfDesktop);
ok(SUCCEEDED(hr), "SHGetDesktopFolder failed! hr = %08lx\n", hr);
if (FAILED(hr)) return;
......@@ -270,7 +270,7 @@ static void test_GetDisplayName(void)
return;
}
/* It seems as if we can not bind to regular files on windows, but only directories.
/* It seems as if we cannot bind to regular files on windows, but only directories.
*/
hr = IShellFolder_BindToObject(psfDesktop, pidlTestFile, NULL, &IID_IUnknown, (VOID**)&psfFile);
todo_wine { ok (hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), "hr = %08lx\n", hr); }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment