Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2005-06-17 20:59:49 +00:00 committed by Alexandre Julliard
parent 9769816b6e
commit 6394a15314
5 changed files with 6 additions and 6 deletions

View file

@ -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;

View file

@ -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);

View file

@ -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:

View file

@ -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;
}
}

View file

@ -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); }