Changelog: * dlls/kernel/debugger.c, dlls/kernel/editline.c, dlls/ole32/compobj.c, dlls/shell32/shlfolder.c, dlls/wintab32/wintab32.c Assorted spelling fixes Index: dlls/kernel/debugger.c =================================================================== RCS file: /home/cvs/wine/dlls/kernel/debugger.c,v retrieving revision 1.27 diff -u -r1.27 debugger.c --- dlls/kernel/debugger.c 14 Oct 2003 01:30:42 -0000 1.27 +++ dlls/kernel/debugger.c 12 Jan 2004 18:29:59 -0000 @@ -210,7 +210,7 @@ /*********************************************************************** * 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. */ void WINAPI OutputDebugStringA( @@ -224,7 +224,7 @@ /*********************************************************************** * 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. */ void WINAPI OutputDebugStringW( @@ -359,7 +359,7 @@ /*********************************************************************** * 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 */ BOOL WINAPI DebugSetProcessKillOnExit(BOOL kill) Index: dlls/kernel/editline.c =================================================================== RCS file: /home/cvs/wine/dlls/kernel/editline.c,v retrieving revision 1.7 diff -u -r1.7 editline.c --- dlls/kernel/editline.c 14 Oct 2003 05:24:21 -0000 1.7 +++ dlls/kernel/editline.c 10 Jan 2004 16:13:06 -0000 @@ -189,10 +189,10 @@ /* erase til eol on first line */ CONSOLE_FillLineUniform(ctx->hConOut, cbeg.X, cbeg.Y, 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++) 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); } ctx->len -= str_len; Index: dlls/ole32/compobj.c =================================================================== RCS file: /home/cvs/wine/dlls/ole32/compobj.c,v retrieving revision 1.84 diff -u -r1.84 compobj.c --- dlls/ole32/compobj.c 6 Oct 2003 21:03:32 -0000 1.84 +++ dlls/ole32/compobj.c 12 Jan 2004 19:17:22 -0000 @@ -1190,7 +1190,7 @@ /*********************************************************************** * 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) { Index: dlls/shell32/shlfolder.c =================================================================== RCS file: /home/cvs/wine/dlls/shell32/shlfolder.c,v retrieving revision 1.85 diff -u -r1.85 shlfolder.c --- dlls/shell32/shlfolder.c 29 Sep 2003 20:20:53 -0000 1.85 +++ dlls/shell32/shlfolder.c 12 Jan 2004 19:17:54 -0000 @@ -333,7 +333,7 @@ * file: 0x40400177 FILESYSTEM | CANMONIKER * 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) { Index: dlls/wintab32/wintab32.c =================================================================== RCS file: /home/cvs/wine/dlls/wintab32/wintab32.c,v retrieving revision 1.1 diff -u -r1.1 wintab32.c --- dlls/wintab32/wintab32.c 9 Jan 2004 00:03:00 -0000 1.1 +++ dlls/wintab32/wintab32.c 12 Jan 2004 19:18:17 -0000 @@ -109,7 +109,7 @@ static LRESULT WINAPI TABLET_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, 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); switch(uMsg) -- Francois Gouget fgouget@xxxxxxx http://fgouget.free.fr/ The greatest programming project of all took six days; on the seventh day the programmer rested. We've been trying to debug the *&^%$#@ thing ever since. Moral: design before you implement.