Module: wine Branch: master Commit: 29ef0b90ee2f9b7dde76ebe159a299e139fdf476 URL: http://source.winehq.org/git/wine.git/?a=commit;h=29ef0b90ee2f9b7dde76ebe159...
Author: Francois Gouget fgouget@free.fr Date: Sat Mar 1 21:10:38 2008 +0100
Assorted spelling, punctuation and case fixes.
---
configure | 6 +++--- configure.ac | 2 +- dlls/d3drm/tests/vector.c | 4 ++-- dlls/msxml3/tests/xmldoc.c | 2 +- dlls/ole32/compobj.c | 2 +- dlls/ole32/compobj_private.h | 2 +- dlls/ole32/ole2.c | 6 +++--- dlls/usp10/tests/usp10.c | 4 ++-- dlls/wined3d/directx.c | 10 +++++----- 9 files changed, 19 insertions(+), 19 deletions(-)
diff --git a/configure b/configure index 71c9b66..831ac1a 100755 --- a/configure +++ b/configure @@ -10039,11 +10039,11 @@ fi fi if test "$ac_cv_lib_Xxf86vm_XF86VidModeQueryExtension" != "yes"; then case "x$with_xvidmode" in - x) wine_notices="$wine_notices|libxxf86vm development files not found, XFree86 Vidmode won't be supported." ;; + x) wine_notices="$wine_notices|libXxf86vm development files not found, XFree86 Vidmode won't be supported." ;; xno) ;; - *) { { echo "$as_me:$LINENO: error: libxxf86vm development files not found, XFree86 Vidmode won't be supported. + *) { { echo "$as_me:$LINENO: error: libXxf86vm development files not found, XFree86 Vidmode won't be supported. This is an error since --with-xvidmode was requested." >&5 -echo "$as_me: error: libxxf86vm development files not found, XFree86 Vidmode won't be supported. +echo "$as_me: error: libXxf86vm development files not found, XFree86 Vidmode won't be supported. This is an error since --with-xvidmode was requested." >&2;} { (exit 1); exit 1; }; } ;; esac diff --git a/configure.ac b/configure.ac index 014f601..4ccc1db 100644 --- a/configure.ac +++ b/configure.ac @@ -643,7 +643,7 @@ then $X_LIBS -lXext -lX11 $X_EXTRA_LIBS) fi WINE_NOTICE_WITH(xvidmode,[test "$ac_cv_lib_Xxf86vm_XF86VidModeQueryExtension" != "yes"], - [libxxf86vm development files not found, XFree86 Vidmode won't be supported.]) + [libXxf86vm development files not found, XFree86 Vidmode won't be supported.])
dnl *** Check for Transform functions in Xrender if test "$ac_cv_header_X11_extensions_Xrender_h" = "yes" -a "x$ac_cv_lib_soname_X11" != "x" -a "x$ac_cv_lib_soname_Xext" != "x" diff --git a/dlls/d3drm/tests/vector.c b/dlls/d3drm/tests/vector.c index e900361..4b0f97f 100644 --- a/dlls/d3drm/tests/vector.c +++ b/dlls/d3drm/tests/vector.c @@ -280,7 +280,7 @@ static void ColorTest(void) got_color=pD3DRMCreateColorRGBA(red,green,blue,alpha); ok((expected_color==got_color),"Expected color=%x, Got color=%x\n",expected_color,got_color);
-/* if a component is <0 then, then one considers this compenent as 0. The following test proves this fact (test only with the red component). */ +/* if a component is <0 then, then one considers this component as 0. The following test proves this fact (test only with the red component). */ red=-0.88f; green=0.4f; blue=0.6f; @@ -289,7 +289,7 @@ static void ColorTest(void) got_color=pD3DRMCreateColorRGBA(red,green,blue,alpha); ok((expected_color==got_color),"Expected color=%x, Got color=%x\n",expected_color,got_color);
-/* if a component is >1 then, then one considers this compenent as 1. The following test proves this fact (test only with the red component). */ +/* if a component is >1 then, then one considers this component as 1. The following test proves this fact (test only with the red component). */ red=2.37f; green=0.4f; blue=0.6f; diff --git a/dlls/msxml3/tests/xmldoc.c b/dlls/msxml3/tests/xmldoc.c index b4e6823..076d1fe 100644 --- a/dlls/msxml3/tests/xmldoc.c +++ b/dlls/msxml3/tests/xmldoc.c @@ -270,7 +270,7 @@ static void test_createElement(void) V_I4(&vType) = -1; V_VT(&vName) = VT_NULL; hr = IXMLDocument_createElement(doc, vType, vName, &element); - /* Upto and including SP7, createElement returns an element. */ + /* Up to and including SP7, createElement returns an element. */ if(hr == S_OK) { ok(element != NULL, "Expected element\n"); diff --git a/dlls/ole32/compobj.c b/dlls/ole32/compobj.c index 8764877..1cb8183 100644 --- a/dlls/ole32/compobj.c +++ b/dlls/ole32/compobj.c @@ -3529,7 +3529,7 @@ HRESULT WINAPI CoWaitForMultipleHandles(DWORD dwFlags, DWORD dwTimeout, /*********************************************************************** * CoGetObject [OLE32.@] * - * Gets the object named by coverting the name to a moniker and binding to it. + * Gets the object named by converting the name to a moniker and binding to it. * * PARAMS * pszName [I] String representing the object. diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h index ba80edf..34d4cdb 100644 --- a/dlls/ole32/compobj_private.h +++ b/dlls/ole32/compobj_private.h @@ -54,7 +54,7 @@ DEFINE_OLEGUID( CLSID_InProcFreeMarshaler, 0x0000033a, 0, 0 ); * locking is required. * LOCK - The value is written to only using Interlocked* functions. * CS - The value is read or written to inside a critical section. - * The identifier following "CS" is the specific critical setion that + * The identifier following "CS" is the specific critical section that * must be used. * MUTEX - The value is read or written to with a mutex held. * The identifier following "MUTEX" is the specific mutex that diff --git a/dlls/ole32/ole2.c b/dlls/ole32/ole2.c index e8efb47..b34235b 100644 --- a/dlls/ole32/ole2.c +++ b/dlls/ole32/ole2.c @@ -118,7 +118,7 @@ static const char OLEDD_DRAGTRACKERCLASS[] = "WineDragDropTracker32"; static struct list targetListHead = LIST_INIT(targetListHead);
/****************************************************************************** - * These are the prototypes of miscelaneous utility methods + * These are the prototypes of miscellaneous utility methods */ static void OLEUTL_ReadRegistryDWORDValue(HKEY regKey, DWORD* pdwValue);
@@ -2734,7 +2734,7 @@ HRESULT WINAPI PropVariantClear(PROPVARIANT * pvar) /* [in/out] */ case VT_CLSID: case VT_LPSTR: case VT_LPWSTR: - /* pick an arbitary typed pointer - we don't care about the type + /* pick an arbitrary typed pointer - we don't care about the type * as we are just freeing it */ CoTaskMemFree(pvar->u.puuid); break; @@ -2781,7 +2781,7 @@ HRESULT WINAPI PropVariantClear(PROPVARIANT * pvar) /* [in/out] */ } if (pvar->vt & ~VT_VECTOR) { - /* pick an arbitary VT_VECTOR structure - they all have the same + /* pick an arbitrary VT_VECTOR structure - they all have the same * memory layout */ CoTaskMemFree(pvar->u.capropvar.pElems); } diff --git a/dlls/usp10/tests/usp10.c b/dlls/usp10/tests/usp10.c index 9bdcc33..f054e62 100644 --- a/dlls/usp10/tests/usp10.c +++ b/dlls/usp10/tests/usp10.c @@ -196,7 +196,7 @@ static void test_ScriptItemIzeShapePlace(HDC hdc, unsigned short pwOutGlyphs[256 cMaxItems = 255; hr = ScriptItemize(TestItem2, cInChars, cMaxItems, NULL, NULL, pItem, &pcItems); ok (hr == 0, "ScriptItemize should return 0, returned %08x\n", hr); - /* This test is for the intertrim operation of ScriptItemize where only one SCRIPT_ITEM is * + /* This test is for the interim operation of ScriptItemize where only one SCRIPT_ITEM is * * returned. */ ok (pItem[0].iCharPos == 0 && pItem[1].iCharPos == cInChars, "Start pos not = 0 (%d) or end pos not = %d (%d)\n", @@ -745,7 +745,7 @@ static void test_ScriptStringXtoCP_CPtoX(HDC hdc) BOOL fTrailing;
/* Test with hdc, this should be a valid test - * Here we generrate an SCRIPT_STRING_ANALYSIS that will be used as input to the + * Here we generate an SCRIPT_STRING_ANALYSIS that will be used as input to the * following character positions to X and X to character position functions. */ hr = ScriptStringAnalyse( hdc, String, String_len, Glyphs, Charset, Flags, diff --git a/dlls/wined3d/directx.c b/dlls/wined3d/directx.c index 42896b6..5b7333c 100644 --- a/dlls/wined3d/directx.c +++ b/dlls/wined3d/directx.c @@ -3004,7 +3004,7 @@ static void test_pbo_functionality(WineD3D_GL_Info *gl_info) { WARN_(d3d_caps)("Disabling PBOs. This may result in slower performance\n"); gl_info->supported[ARB_PIXEL_BUFFER_OBJECT] = FALSE; } else { - TRACE_(d3d_caps)("PBO test successfull\n"); + TRACE_(d3d_caps)("PBO test successful\n"); } } #undef GLINFO_LOCATION @@ -3094,10 +3094,10 @@ static void fixup_extensions(WineD3D_GL_Info *gl_info) { * We don't want to enable this on all cards, as it adds an extra instruction per texcoord used. This * makes the shader slower and eats instruction slots which should be available to the d3d app. * - * ATI Radeon HD 2xxx cards on MacOS have the issue. Instead of checking for the buggy cards blacklist - * all radeon cards on Macs but whitelist the good ones, that way we're prepared for the future. If - * this workaround is activated on cards that do not need it it won't break things, just affect - * performance negatively + * ATI Radeon HD 2xxx cards on MacOS have the issue. Instead of checking for the buggy cards, blacklist + * all radeon cards on Macs and whitelist the good ones. That way we're prepared for the future. If + * this workaround is activated on cards that do not need it, it won't break things, just affect + * performance negatively. */ if(gl_info->gl_vendor == VENDOR_INTEL || (gl_info->gl_vendor == VENDOR_ATI && gl_info->gl_card != CARD_ATI_RADEON_X1600)) {