Commit 51a256e6 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes and wording tweaks.

parent bd80daff
......@@ -1727,8 +1727,8 @@ static void test_QueryFullProcessImageNameA(void)
expect_eq_s(INIT_STR, buf);
/* this is a difference between the ascii and the unicode version
* the unicode version crashes when the size is big enough to hold the result
* ascii version through an error
* the unicode version crashes when the size is big enough to hold
* the result while the ascii version throws an error
*/
size = 1024;
expect_eq_d(FALSE, pQueryFullProcessImageNameA(GetCurrentProcess(), 0, NULL, &size));
......
......@@ -732,7 +732,7 @@ static UINT reorder_check( const struct expr *expr, JOINTABLE **ordered_tables,
add_to_array(ordered_tables, *lastused);
return res;
default:
ERR("Unkown expr type: %i\n", expr->type);
ERR("Unknown expr type: %i\n", expr->type);
assert(0);
return 0x1000000;
}
......
......@@ -233,7 +233,7 @@ static void test_create(void)
ok(hclient != INVALID_HANDLE_VALUE, "CreateFile failed for sharing %x, access: %x, GetLastError: %d\n",
sharing[j], access[k], GetLastError());
else
ok(hclient == INVALID_HANDLE_VALUE, "CreateFile succeded for sharing %x, access: %x\n", sharing[j], access[k]);
ok(hclient == INVALID_HANDLE_VALUE, "CreateFile succeeded for sharing %x, access: %x\n", sharing[j], access[k]);
CloseHandle(hserver);
}
......
......@@ -3608,7 +3608,7 @@ static void EDIT_WM_Paint(EDITSTATE *es, HDC hdc)
(es->style & ES_NOHIDESEL));
dc = hdc ? hdc : BeginPaint(es->hwndSelf, &ps);
/* The dc we use for calcualting may not be the one we paint into.
/* The dc we use for calculating may not be the one we paint into.
This is the safest action. */
EDIT_InvalidateUniscribeData(es);
GetClientRect(es->hwndSelf, &rcClient);
......
......@@ -544,7 +544,7 @@ static WORD get_char_script( WCHAR ch)
if (ch == 0xc || ch == 0x20 || ch == 0x202f)
return Script_CR;
/* These punctuation are seperated out as Latin punctuation */
/* These punctuation are separated out as Latin punctuation */
if (strchrW(latin_punc,ch))
return Script_Punctuation2;
......
......@@ -7297,7 +7297,7 @@ HRESULT arbfp_blit_surface(struct wined3d_device *device, DWORD filter,
if (wined3d_settings.offscreen_rendering_mode != ORM_FBO
&& (src_surface->flags & (SFLAG_INTEXTURE | SFLAG_INDRAWABLE)) == SFLAG_INDRAWABLE)
{
/* Without FBO blits transfering from the drawable to the texture is
/* Without FBO blits transferring from the drawable to the texture is
* expensive, because we have to flip the data in sysmem. Since we can
* flip in the blitter, we don't actually need that flip anyway. So we
* use the surface's texture as scratch texture, and flip the source
......
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