Assorted spelling fixes.

This commit is contained in:
Detlef Riekenberg 2007-12-07 21:01:34 +01:00 committed by Alexandre Julliard
parent 0a92e10640
commit efb13b28df
8 changed files with 10 additions and 10 deletions

View file

@ -2081,7 +2081,7 @@ static BOOL PROPSHEET_SetCurSel(HWND hwndDlg,
index = PROPSHEET_FindPageByResId(psInfo, result);
if(index >= psInfo->nPages) {
index = old_index;
WARN("Tried to skip to nonexistant page by res id\n");
WARN("Tried to skip to nonexistent page by res id\n");
break;
}
continue;

View file

@ -355,7 +355,7 @@ static int codeview_add_type(unsigned int typeno, struct symt* dt)
if (cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE])
{
if (cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE] != dt)
FIXME("Overwritting at %x\n", typeno);
FIXME("Overwriting at %x\n", typeno);
}
cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE] = dt;
return TRUE;

View file

@ -231,7 +231,7 @@ static void SetDeferredRun(WORD *pval, int cval, int iStart, int nval)
Output: revised character count
Note: This is a very simplfistic function. In effect it restricts
Note: This is a very simplistic function. In effect it restricts
the action of the algorithm to the first paragraph in the input
where a paragraph ends at the end of the first block separator
or at the end of the input text.

View file

@ -2780,7 +2780,7 @@ DWORD WINAPI GetKerningPairsW( HDC hDC, DWORD cPairs,
* TranslateCharsetInfo [GDI32.@]
*
* Fills a CHARSETINFO structure for a character set, code page, or
* font. This allows making the correspondance between different labelings
* font. This allows making the correspondence between different labelings
* (character set, Windows, ANSI, and OEM codepages, and Unicode ranges)
* of the same encoding.
*

View file

@ -43,7 +43,7 @@ static void test_GetDriveTypeA(void)
if (!(logical_drives & 1))
ok(type == DRIVE_NO_ROOT_DIR,
"GetDriveTypeA should return DRIVE_NO_ROOT_DIR for inexistant drive %c: but not %u\n",
"GetDriveTypeA should return DRIVE_NO_ROOT_DIR for inexistent drive %c: but not %u\n",
drive[0], type);
logical_drives >>= 1;
@ -71,7 +71,7 @@ static void test_GetDriveTypeW(void)
if (!(logical_drives & 1))
ok(type == DRIVE_NO_ROOT_DIR,
"GetDriveTypeW should return DRIVE_NO_ROOT_DIR for inexistant drive %c: but not %u\n",
"GetDriveTypeW should return DRIVE_NO_ROOT_DIR for inexistent drive %c: but not %u\n",
drive[0], type);
logical_drives >>= 1;

View file

@ -702,8 +702,8 @@ foreach (sort keys %ext_functions) {
print EXT "\nstatic ", GenerateThunk($ext_functions{$_}, 0, $ext_prefix, $gen_thread_safe, $local_var);
}
# Then the table giving the string <-> function correspondance */
print EXT "\n\n/* The table giving the correspondance between names and functions */\n";
# Then the table giving the string <-> function correspondence */
print EXT "\n\n/* The table giving the correspondence between names and functions */\n";
print EXT "const OpenGL_extension extension_registry[$count] = {\n";
my $i = 0;
foreach (sort keys %ext_functions) {

View file

@ -9706,7 +9706,7 @@ static void WINAPI wine_glWriteMaskEXT( GLuint res, GLuint in, GLenum outX, GLen
}
/* The table giving the correspondance between names and functions */
/* The table giving the correspondence between names and functions */
const OpenGL_extension extension_registry[1197] = {
{ "glActiveStencilFaceEXT", "GL_EXT_stencil_two_side", (void *) wine_glActiveStencilFaceEXT },
{ "glActiveTexture", "GL_VERSION_1_3", (void *) wine_glActiveTexture },

View file

@ -5761,7 +5761,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl_DeletePatch(IWineD3DDevice *iface, UINT
}
/* TODO: Write a test for the return value */
FIXME("Attempt to destroy nonexistant patch\n");
FIXME("Attempt to destroy nonexistent patch\n");
return WINED3DERR_INVALIDCALL;
}