Assorted spelling fixes

Francois Gouget fgouget at free.fr
Wed Nov 9 11:45:33 CST 2005


Changelog:

  * dlls/comctl32/listview.c
    dlls/dxerr8/errors.awk
    dlls/dxerr9/errors.awk
    dlls/msi/package.c
    dlls/msi/tests/package.c
    dlls/msxml3/tests/domdoc.c
    dlls/oleaut32/olepicture.c
    dlls/secur32/dispatcher.c
    dlls/user/exticon.c
    dlls/wined3d/directx.c
    dlls/wined3d/surface.c
    dlls/wined3d/vertexshader.c
    dlls/winmm/wineoss/mmaux.c
    tools/sfnt2fnt.c

    Francois Gouget <fgouget at free.fr>
    Assorted spelling and case fixes


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
            Cahn's Axiom: When all else fails, read the instructions.
-------------- next part --------------
Index: dlls/comctl32/listview.c
===================================================================
RCS file: /var/cvs/wine/dlls/comctl32/listview.c,v
retrieving revision 1.435
diff -u -p -r1.435 listview.c
--- dlls/comctl32/listview.c	5 Nov 2005 10:42:35 -0000	1.435
+++ dlls/comctl32/listview.c	9 Nov 2005 16:03:24 -0000
@@ -5138,7 +5138,7 @@ static HIMAGELIST LISTVIEW_GetImageList(
  *
  * NOTE:
  *   This is the internal 'GetItem' interface -- it tries to
- *   be smart, and avoids text copies, if possible, by modifing
+ *   be smart and avoid text copies, if possible, by modifying
  *   lpLVItem->pszText to point to the text string. Please note
  *   that this is not always possible (e.g. OWNERDATA), so on
  *   entry you *must* supply valid values for pszText, and cchTextMax.
Index: dlls/dxerr8/errors.awk
===================================================================
RCS file: /var/cvs/wine/dlls/dxerr8/errors.awk,v
retrieving revision 1.3
diff -u -p -r1.3 errors.awk
--- dlls/dxerr8/errors.awk	3 Oct 2005 10:15:15 -0000	1.3
+++ dlls/dxerr8/errors.awk	29 Oct 2005 23:22:32 -0000
@@ -9,7 +9,7 @@ BEGIN {
 	if (NF > 0 && length(array[1]) > 0) {
 		lines++
 
-		# save the first word (or '&' seperated list of words) in the names array
+		# save the first word (or '&' separated list of words) in the names array
 		if (array[2] == "&") {
 			if (array[4] == "&") {
 				names[lines] = array[1] " " array[2] " " array[3] " " array[4] " " array[5]
Index: dlls/dxerr9/errors.awk
===================================================================
RCS file: /var/cvs/wine/dlls/dxerr9/errors.awk,v
retrieving revision 1.3
diff -u -p -r1.3 errors.awk
--- dlls/dxerr9/errors.awk	3 Oct 2005 10:15:15 -0000	1.3
+++ dlls/dxerr9/errors.awk	29 Oct 2005 23:23:09 -0000
@@ -9,7 +9,7 @@ BEGIN {
 	if (NF > 0 && length(array[1]) > 0) {
 		lines++
 
-		# save the first word (or '&' seperated list of words) in the names array
+		# save the first word (or '&' separated list of words) in the names array
 		if (array[2] == "&") {
 			if (array[4] == "&") {
 				names[lines] = array[1] " " array[2] " " array[3] " " array[4] " " array[5]
Index: dlls/msi/package.c
===================================================================
RCS file: /var/cvs/wine/dlls/msi/package.c,v
retrieving revision 1.64
diff -u -p -r1.64 package.c
--- dlls/msi/package.c	31 Oct 2005 14:07:37 -0000	1.64
+++ dlls/msi/package.c	9 Nov 2005 16:38:28 -0000
@@ -727,7 +727,7 @@ UINT MSI_SetPropertyW( MSIPACKAGE *packa
     if (!szName)
         return ERROR_INVALID_PARAMETER;
 
-    /* this one is wierd... */
+    /* this one is weird... */
     if (!szName[0])
         return szValue ? ERROR_FUNCTION_FAILED : ERROR_SUCCESS;
 
Index: dlls/msi/tests/package.c
===================================================================
RCS file: /var/cvs/wine/dlls/msi/tests/package.c,v
retrieving revision 1.9
diff -u -p -r1.9 package.c
--- dlls/msi/tests/package.c	2 Nov 2005 19:58:01 -0000	1.9
+++ dlls/msi/tests/package.c	3 Nov 2005 05:45:35 -0000
@@ -631,7 +631,7 @@ static void test_props(void)
     r = MsiGetProperty( hpkg, "boo", buffer, NULL );
     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
 
-    /* test retrieving an empty/non-existant property */
+    /* test retrieving an empty/nonexistent property */
     sz = sizeof buffer;
     r = MsiGetProperty( hpkg, "boo", NULL, &sz );
     ok( r == ERROR_SUCCESS, "wrong return val\n");
Index: dlls/msxml3/tests/domdoc.c
===================================================================
RCS file: /var/cvs/wine/dlls/msxml3/tests/domdoc.c,v
retrieving revision 1.9
diff -u -p -r1.9 domdoc.c
--- dlls/msxml3/tests/domdoc.c	8 Nov 2005 19:59:36 -0000	1.9
+++ dlls/msxml3/tests/domdoc.c	9 Nov 2005 05:45:46 -0000
@@ -102,7 +102,7 @@ void test_domdoc( void )
     ok( r == S_FALSE, "loadXML failed\n");
     ok( b == VARIANT_FALSE, "failed to load XML string\n");
 
-    /* try to load an document from an non-existent file */
+    /* try to load a document from a nonexistent file */
     b = VARIANT_TRUE;
     str = SysAllocString( szNonExistentFile );
     VariantInit(&var);
Index: dlls/oleaut32/olepicture.c
===================================================================
RCS file: /var/cvs/wine/dlls/oleaut32/olepicture.c,v
retrieving revision 1.69
diff -u -p -r1.69 olepicture.c
--- dlls/oleaut32/olepicture.c	7 Nov 2005 11:09:10 -0000	1.69
+++ dlls/oleaut32/olepicture.c	9 Nov 2005 15:58:03 -0000
@@ -1115,7 +1115,7 @@ static HRESULT WINAPI OLEPictureImpl_Loa
       }
   }
 
-  if (statfailed) { /* we dont know the size ... read all we get */
+  if (statfailed) { /* we don't know the size ... read all we get */
       int sizeinc = 4096;
       int origsize = sizeinc;
       ULONG nread = 42;
Index: dlls/secur32/dispatcher.c
===================================================================
RCS file: /var/cvs/wine/dlls/secur32/dispatcher.c,v
retrieving revision 1.1
diff -u -p -r1.1 dispatcher.c
--- dlls/secur32/dispatcher.c	30 Oct 2005 19:06:24 -0000	1.1
+++ dlls/secur32/dispatcher.c	31 Oct 2005 11:14:25 -0000
@@ -219,7 +219,7 @@ SECURITY_STATUS run_helper(PNegoHelper h
         return sec_status;
     }
     
-    TRACE("In helper: recieved %s\n", debugstr_a(helper->com_buf));
+    TRACE("In helper: received %s\n", debugstr_a(helper->com_buf));
     *buflen = lstrlenA(helper->com_buf);
 
     if( *buflen > max_buflen)
Index: dlls/user/exticon.c
===================================================================
RCS file: /var/cvs/wine/dlls/user/exticon.c,v
retrieving revision 1.38
diff -u -p -r1.38 exticon.c
--- dlls/user/exticon.c	26 Oct 2005 12:05:59 -0000	1.38
+++ dlls/user/exticon.c	29 Oct 2005 23:21:32 -0000
@@ -272,7 +272,7 @@ static BOOL CALLBACK extract_icons_callb
     /* If we didn't already start extracting icons (cIter == 0), we look if the current
      * icon is the one we should start with. That's the case if nBaseIndex is negative and
      * it's absolute value matches the current icon's identifier. Or if nBaseIndex is positive
-     * and we already ommited the first nBaseIndex icons. */
+     * and we already omitted the first nBaseIndex icons. */
     if (pState->cIter == 0) {
         if (pState->nBaseIndex < 0) {
             if (!IS_INTRESOURCE(pwszName) || idCurrent != -pState->nBaseIndex) {
Index: dlls/wined3d/directx.c
===================================================================
RCS file: /var/cvs/wine/dlls/wined3d/directx.c,v
retrieving revision 1.59
diff -u -p -r1.59 directx.c
--- dlls/wined3d/directx.c	8 Nov 2005 12:47:04 -0000	1.59
+++ dlls/wined3d/directx.c	9 Nov 2005 16:21:36 -0000
@@ -1026,7 +1026,7 @@ static BOOL IWineD3DImpl_IsGLXFBConfigCo
     break;
   }
   return FALSE;
-#else /* Most of the time performance is less of an issue than compatability, this code allows for most common opengl/d3d formats */
+#else /* Most of the time performance is less of an issue than compatibility, this code allows for most common opengl/d3d formats */
 switch (Format) {
   case WINED3DFMT_X8R8G8B8:
   case WINED3DFMT_R8G8B8:
@@ -1086,7 +1086,7 @@ static BOOL IWineD3DImpl_IsGLXFBConfigCo
     break;
   }
   return FALSE;
-#else /* Most of the time performance is less of an issue than compatability, this code allows for most common opengl/d3d formats */
+#else /* Most of the time performance is less of an issue than compatibility, this code allows for most common opengl/d3d formats */
   switch (Format) {
   case WINED3DFMT_D16:
   case WINED3DFMT_D16_LOCKABLE:
Index: dlls/wined3d/surface.c
===================================================================
RCS file: /var/cvs/wine/dlls/wined3d/surface.c,v
retrieving revision 1.28
diff -u -p -r1.28 surface.c
--- dlls/wined3d/surface.c	2 Nov 2005 20:01:54 -0000	1.28
+++ dlls/wined3d/surface.c	9 Nov 2005 16:21:37 -0000
@@ -672,7 +672,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_Unloc
         /****************************
         * TODO: Render targets are 'special' and
         * ?some? locking needs to be passed onto the context manager
-        * so that it becomes possible to use auxilary buffers, pbuffers
+        * so that it becomes possible to use auxiliary buffers, pbuffers
         * render-to-texture, shared, cached contexts etc...
         * ****************************/
         IWineD3DSwapChainImpl *implSwapChain;
@@ -1146,7 +1146,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_SaveS
     DWORD color;
     /*FIXME:
     Textures my not be stored in ->allocatedgMemory and a GlTexture
-    so we should lock the surface before saving a snapshot, or atleast check that
+    so we should lock the surface before saving a snapshot, or at least check that
     */
     /* TODO: Compressed texture images can be obtained from the GL in uncompressed form
     by calling GetTexImage and in compressed form by calling
@@ -1163,7 +1163,7 @@ HRESULT WINAPI IWineD3DSurfaceImpl_SaveS
     IWineD3DSurface_GetContainer(iface, &IID_IWineD3DSwapChain, (void **)&swapChain);
 
     if (swapChain || This->inPBuffer) { /* if were not a real texture then read the back buffer into a real texture*/
-/* we don't want to interfere with the back buffer so read the data into a tempory texture and then save the data out of the tempory texture */
+/* we don't want to interfere with the back buffer so read the data into a temporary texture and then save the data out of the temporary texture */
         GLint prevRead;
         ENTER_GL();
         FIXME("(%p) This surface needs to be locked before a snapshot can be taken\n", This);
Index: dlls/wined3d/vertexshader.c
===================================================================
RCS file: /var/cvs/wine/dlls/wined3d/vertexshader.c,v
retrieving revision 1.14
diff -u -p -r1.14 vertexshader.c
--- dlls/wined3d/vertexshader.c	27 Oct 2005 10:23:53 -0000	1.14
+++ dlls/wined3d/vertexshader.c	28 Oct 2005 04:45:59 -0000
@@ -638,7 +638,7 @@ static CONST SHADER_OPCODE vshader_ins [
         RCP tmp, vec
         MUL out, tmp, vec*/
     {D3DSIO_SGN,      "sng",      NULL,   2, vshader_sng,     0, 0},
-    /* TODO: xyz normalise can be performed is VS_ARB using one tempory register,
+    /* TODO: xyz normalise can be performed is VS_ARB using one temporary register,
         DP3 tmp , vec, vec;
         RSQ tmp, tmp.x;
         MUL vec.xyz, vec, tmp;
Index: dlls/winmm/wineoss/mmaux.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/wineoss/mmaux.c,v
retrieving revision 1.13
diff -u -p -r1.13 mmaux.c
--- dlls/winmm/wineoss/mmaux.c	3 Aug 2005 21:25:10 -0000	1.13
+++ dlls/winmm/wineoss/mmaux.c	4 Oct 2005 08:56:33 -0000
@@ -1,5 +1,5 @@
 /*
- * Sample AUXILARY Wine Driver
+ * Sample AUXILIARY Wine Driver
  *
  * Copyright 1994 Martin Ayotte
  *
Index: tools/sfnt2fnt.c
===================================================================
RCS file: /var/cvs/wine/tools/sfnt2fnt.c,v
retrieving revision 1.12
diff -u -p -r1.12 sfnt2fnt.c
--- tools/sfnt2fnt.c	16 Sep 2005 18:45:45 -0000	1.12
+++ tools/sfnt2fnt.c	12 Oct 2005 09:29:47 -0000
@@ -382,7 +382,7 @@ int main(int argc, char **argv)
 
 int main(int argc, char **argv)
 {
-    fprintf( stderr, "%s needs to be built with Freetype support\n", argv[0] );
+    fprintf( stderr, "%s needs to be built with FreeType support\n", argv[0] );
     exit(1);
 }
 


More information about the wine-patches mailing list