Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2006-05-12 00:06:31 +02:00 committed by Alexandre Julliard
parent 8266fdd8cb
commit e739ba9551
7 changed files with 10 additions and 10 deletions

2
configure vendored
View File

@ -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

View File

@ -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

View File

@ -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),

View File

@ -1459,7 +1459,7 @@ static MSIFOLDER *load_folder( MSIPACKAGE *package, LPCWSTR dir )
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, '|' );

View File

@ -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);
}

View File

@ -1905,7 +1905,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_SetColorKey(IWineD3DSurface *iface, DWORD Fla
}
if(dirtify) {
TRACE("Color key changed, dirtifing surface\n");
TRACE("Color key changed, dirtifying surface\n");
This->Flags |= SFLAG_DIRTY;
}

View File

@ -1609,8 +1609,8 @@ static void X11DRV_DIB_GetImageBits_8( int lines, BYTE *dstbits,
* 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;