Assorted spelling fixes.

oldstable
Francois Gouget 2004-01-16 21:26:08 +00:00 committed by Alexandre Julliard
parent e04ff33417
commit 17112eaa4d
5 changed files with 8 additions and 8 deletions

View File

@ -210,7 +210,7 @@ BOOL WINAPI DebugActiveProcessStop(
/*********************************************************************** /***********************************************************************
* OutputDebugStringA (KERNEL32.@) * OutputDebugStringA (KERNEL32.@)
* *
* Output by an application of a unicode string to a debugger (if attached) * Output by an application of an ascii string to a debugger (if attached)
* and program log. * and program log.
*/ */
void WINAPI OutputDebugStringA( void WINAPI OutputDebugStringA(
@ -231,7 +231,7 @@ void WINAPI OutputDebugStringA(
/*********************************************************************** /***********************************************************************
* OutputDebugStringW (KERNEL32.@) * OutputDebugStringW (KERNEL32.@)
* *
* Output by an appliccation of a unicode string to a debugger (if attached) * Output by an application of a unicode string to a debugger (if attached)
* and program log. * and program log.
*/ */
void WINAPI OutputDebugStringW( void WINAPI OutputDebugStringW(
@ -359,7 +359,7 @@ void WINAPIV _DebugOutput( WORD flags, LPCSTR spec, VA_LIST16 valist )
/*********************************************************************** /***********************************************************************
* DebugSetProcessKillOnExit (KERNEL32.@) * DebugSetProcessKillOnExit (KERNEL32.@)
* *
* Let a debugger decide wether a debuggee will be killed upon debugger * Let a debugger decide whether a debuggee will be killed upon debugger
* termination * termination
*/ */
BOOL WINAPI DebugSetProcessKillOnExit(BOOL kill) BOOL WINAPI DebugSetProcessKillOnExit(BOOL kill)

View File

@ -189,10 +189,10 @@ static void WCEL_DeleteString(WCEL_Context* ctx, int beg, int end)
/* erase til eol on first line */ /* erase til eol on first line */
CONSOLE_FillLineUniform(ctx->hConOut, cbeg.X, cbeg.Y, CONSOLE_FillLineUniform(ctx->hConOut, cbeg.X, cbeg.Y,
ctx->csbi.dwSize.X - cbeg.X, &ci); ctx->csbi.dwSize.X - cbeg.X, &ci);
/* completly erase all the others (full lines) */ /* completely erase all the others (full lines) */
for (i = cbeg.Y + 1; i < cend.Y; i++) for (i = cbeg.Y + 1; i < cend.Y; i++)
CONSOLE_FillLineUniform(ctx->hConOut, 0, i, ctx->csbi.dwSize.X, &ci); CONSOLE_FillLineUniform(ctx->hConOut, 0, i, ctx->csbi.dwSize.X, &ci);
/* erase from beg of line until last pos on last line */ /* erase from begining of line until last pos on last line */
CONSOLE_FillLineUniform(ctx->hConOut, 0, cend.Y, cend.X, &ci); CONSOLE_FillLineUniform(ctx->hConOut, 0, cend.Y, cend.X, &ci);
} }
ctx->len -= str_len; ctx->len -= str_len;

View File

@ -1190,7 +1190,7 @@ end:
/*********************************************************************** /***********************************************************************
* compobj_RegReadPath [internal] * compobj_RegReadPath [internal]
* *
* Reads a registry value and expands it when nessesary * Reads a registry value and expands it when necessary
*/ */
HRESULT compobj_RegReadPath(char * keyname, char * valuename, char * dst, int dstlen) HRESULT compobj_RegReadPath(char * keyname, char * valuename, char * dst, int dstlen)
{ {

View File

@ -333,7 +333,7 @@ HRESULT SHELL32_GetDisplayNameOfChild (IShellFolder2 * psf,
* file: 0x40400177 FILESYSTEM | CANMONIKER * file: 0x40400177 FILESYSTEM | CANMONIKER
* drive 0xF0400154 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER | CANRENAME (LABEL) * drive 0xF0400154 FILESYSTEM | HASSUBFOLDER | FOLDER | FILESYSANCESTOR | CANMONIKER | CANRENAME (LABEL)
* *
* This functions does not set flags!! It only resets flags when nessesary. * This function does not set flags!! It only resets flags when necessary.
*/ */
HRESULT SHELL32_GetItemAttributes (IShellFolder * psf, LPCITEMIDLIST pidl, LPDWORD pdwAttributes) HRESULT SHELL32_GetItemAttributes (IShellFolder * psf, LPCITEMIDLIST pidl, LPDWORD pdwAttributes)
{ {

View File

@ -109,7 +109,7 @@ BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpReserved)
static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam,
LPARAM lParam) LPARAM lParam)
{ {
TRACE("Incomming Message 0x%x (0x%08x, 0x%08x)\n", uMsg, (UINT)wParam, TRACE("Incoming Message 0x%x (0x%08x, 0x%08x)\n", uMsg, (UINT)wParam,
(UINT)lParam); (UINT)lParam);
switch(uMsg) switch(uMsg)