Module: wine Branch: refs/heads/master Commit: e739ba9551260a5e596817eb0936c2a7813d0e0e URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=e739ba9551260a5e596817eb...
Author: Francois Gouget fgouget@free.fr Date: Fri May 12 00:06:31 2006 +0200
Assorted spelling fixes.
---
configure | 2 +- configure.ac | 2 +- dlls/advpack/tests/install.c | 2 +- dlls/msi/action.c | 2 +- dlls/user/tests/wsprintf.c | 6 +++--- dlls/wined3d/surface.c | 2 +- dlls/x11drv/dib.c | 4 ++-- 7 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/configure b/configure index 4caf278..533fcc5 100755 --- a/configure +++ b/configure @@ -21815,7 +21815,7 @@ fi if test "$wine_cv_msg_fonts" = "yes" then echo - echo "*** Warning: Freetype or Fontforge is missing." + echo "*** Warning: FreeType or FontForge is missing." echo "*** Fonts will not be built. Dialog text may be invisible or unaligned." exitcode=1 fi diff --git a/configure.ac b/configure.ac index 4861751..cd5a7ae 100644 --- a/configure.ac +++ b/configure.ac @@ -1833,7 +1833,7 @@ fi if test "$wine_cv_msg_fonts" = "yes" then echo - echo "*** Warning: Freetype or Fontforge is missing." + echo "*** Warning: FreeType or FontForge is missing." echo "*** Fonts will not be built. Dialog text may be invisible or unaligned." exitcode=1 fi diff --git a/dlls/advpack/tests/install.c b/dlls/advpack/tests/install.c index d8eee76..6e7b59c 100644 --- a/dlls/advpack/tests/install.c +++ b/dlls/advpack/tests/install.c @@ -61,7 +61,7 @@ static void test_RunSetupCommand() hr = pRunSetupCommand(NULL, "winver.exe", "Install", NULL, "Title", NULL, 0, NULL); ok(hr == E_INVALIDARG, "Expected E_INVALIDARG, got %ld\n", hr);
- /* try to run a non-existent exe */ + /* try to run a nonexistent exe */ hexe = (HANDLE)0xdeadbeef; hr = pRunSetupCommand(NULL, "idontexist.exe", "Install", "c:\windows\system32", "Title", &hexe, 0, NULL); ok(hr == HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND), diff --git a/dlls/msi/action.c b/dlls/msi/action.c index 270e9ae..22133cf 100644 --- a/dlls/msi/action.c +++ b/dlls/msi/action.c @@ -1459,7 +1459,7 @@ static MSIFOLDER *load_folder( MSIPACKAG tgt_short = p; src_short = folder_split_path( p, ':' );
- /* split the long and short pathes */ + /* split the long and short paths */ tgt_long = folder_split_path( tgt_short, '|' ); src_long = folder_split_path( src_short, '|' );
diff --git a/dlls/user/tests/wsprintf.c b/dlls/user/tests/wsprintf.c index d4bcd4c..5fbbc94 100644 --- a/dlls/user/tests/wsprintf.c +++ b/dlls/user/tests/wsprintf.c @@ -51,7 +51,7 @@ static void wsprintfWTest(void) }
/* Test if the CharUpper / CharLower functions return true 16 bit results, - if the input is a 16 bit input value. Upto Wine 11-2003 the input value + if the input is a 16 bit input value. Up to Wine 11-2003 the input value 0xff returns 0xffffffff. */
static void CharUpperTest(void) @@ -69,7 +69,7 @@ static void CharUpperTest(void) break; } } - ok(!failed,"CharUpper failed - 16bit input (0x%0x) returned 32bit result (0x%0x)",i,out); + ok(!failed,"CharUpper failed - 16bit input (0x%0x) returned 32bit result (0x%0x)\n",i,out); }
static void CharLowerTest(void) @@ -87,7 +87,7 @@ static void CharLowerTest(void) break; } } - ok(!failed,"CharLower failed - 16bit input (0x%0x) returned 32bit result (0x%0x)",i,out); + ok(!failed,"CharLower failed - 16bit input (0x%0x) returned 32bit result (0x%0x)\n",i,out); }
diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c index 04c3ec3..d56777f 100644 --- a/dlls/wined3d/surface.c +++ b/dlls/wined3d/surface.c @@ -1905,7 +1905,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_SetCo }
if(dirtify) { - TRACE("Color key changed, dirtifing surface\n"); + TRACE("Color key changed, dirtifying surface\n"); This->Flags |= SFLAG_DIRTY; }
diff --git a/dlls/x11drv/dib.c b/dlls/x11drv/dib.c index 5904f0a..3379852 100644 --- a/dlls/x11drv/dib.c +++ b/dlls/x11drv/dib.c @@ -1609,8 +1609,8 @@ static void X11DRV_DIB_GetImageBits_8( i * Hack for now * This condition is true when GetImageBits has been called by * UpdateDIBSection. For now, GetNearestIndex is too slow to support - * 256 colormaps, so we'll just use for for GetDIBits calls. - * (In somes cases, in a updateDIBSection, the returned colors are bad too) + * 256 colormaps, so we'll just use it for GetDIBits calls. + * (In some cases, in an updateDIBSection, the returned colors are bad too) */ if (!srccolors) goto updatesection;