Assorted spelling fixes

Francois Gouget fgouget at free.fr
Wed Aug 25 07:27:39 CDT 2004


Changelog:

 * dlls/comctl32/tests/subclass.c
   dlls/msvcrt/tests/time.c
   dlls/quartz/avidec.c
   dlls/quartz/dsoundrender.c
   dlls/quartz/videorenderer.c
   dlls/winmm/tests/capture.c
   dlls/winmm/tests/wave.c
   include/basetsd.h
   include/winnt.h

   Assorted spelling fixes


-- 
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
         Demander si un ordinateur peut penser revient \xE0 demander
                         si un sous-marin peut nager.
-------------- next part --------------
Index: dlls/comctl32/tests/subclass.c
===================================================================
RCS file: /var/cvs/wine/dlls/comctl32/tests/subclass.c,v
retrieving revision 1.1
diff -u -r1.1 subclass.c
--- dlls/comctl32/tests/subclass.c	22 Aug 2004 22:29:37 -0000	1.1
+++ dlls/comctl32/tests/subclass.c	24 Aug 2004 23:13:15 -0000
@@ -161,8 +161,8 @@
         expected++;
         actual++;
     }
-    ok(!expected->procnum, "Recieved less messages then expected\n");
-    ok(!actual->procnum, "Recieved more messages then expected\n");
+    ok(!expected->procnum, "Received fewer messages than expected\n");
+    ok(!actual->procnum, "Received more messages than expected\n");
     flush_sequence();
 }
 
Index: dlls/msvcrt/tests/time.c
===================================================================
RCS file: /var/cvs/wine/dlls/msvcrt/tests/time.c,v
retrieving revision 1.1
diff -u -r1.1 time.c
--- dlls/msvcrt/tests/time.c	25 Mar 2004 00:12:40 -0000	1.1
+++ dlls/msvcrt/tests/time.c	24 Aug 2004 21:13:42 -0000
@@ -75,7 +75,7 @@
     local_time = mktime(&my_tm);
     ok(((DWORD)local_time == SECSPERDAY), "mktime returned 0x%08lx\n",(DWORD)local_time);
 
-    /* TEST that we are indepentant from the TZ variable */
+    /* TEST that we are independent from the TZ variable */
     /*Argh, msvcrt doesn't have setenv() */
     _snprintf(TZ_env,255,"TZ=%s",(getenv("TZ")?getenv("TZ"):""));
     putenv("TZ=GMT");
Index: dlls/quartz/avidec.c
===================================================================
RCS file: /var/cvs/wine/dlls/quartz/avidec.c,v
retrieving revision 1.7
diff -u -r1.7 avidec.c
--- dlls/quartz/avidec.c	24 Aug 2004 02:28:35 -0000	1.7
+++ dlls/quartz/avidec.c	24 Aug 2004 23:09:53 -0000
@@ -84,7 +84,7 @@
 
     hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
     if (FAILED(hr)) {
-	ERR("Unable to retreive media type\n");
+	ERR("Unable to retrieve media type\n");
 	goto error;
     }
     format = (VIDEOINFOHEADER*)amt.pbFormat;
@@ -121,7 +121,7 @@
 
     res = ICDecompress(This->hvid, 0, &format->bmiHeader, data, &bi, pbDstStream);
     if (res != ICERR_OK)
-        ERR("Error occured during the decompression (%lx)\n", res);
+        ERR("Error occurred during the decompression (%lx)\n", res);
     
     hr = OutputPin_SendSample((OutputPin*)This->ppPins[1], pSample);
     if (hr != S_OK && hr != VFW_E_NOT_CONNECTED) {
Index: dlls/quartz/dsoundrender.c
===================================================================
RCS file: /var/cvs/wine/dlls/quartz/dsoundrender.c,v
retrieving revision 1.1
diff -u -r1.1 dsoundrender.c
--- dlls/quartz/dsoundrender.c	24 Aug 2004 02:28:35 -0000	1.1
+++ dlls/quartz/dsoundrender.c	24 Aug 2004 23:10:22 -0000
@@ -111,7 +111,7 @@
 
     hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
     if (FAILED(hr)) {
-	ERR("Unable to retreive media type\n");
+	ERR("Unable to retrieve media type\n");
 	return hr;
     }
 
Index: dlls/quartz/videorenderer.c
===================================================================
RCS file: /var/cvs/wine/dlls/quartz/videorenderer.c,v
retrieving revision 1.1
diff -u -r1.1 videorenderer.c
--- dlls/quartz/videorenderer.c	24 Aug 2004 02:28:35 -0000	1.1
+++ dlls/quartz/videorenderer.c	24 Aug 2004 23:10:42 -0000
@@ -181,7 +181,7 @@
     sdesc.dwSize = sizeof(sdesc);
     hr = IPin_ConnectionMediaType(This->ppPins[0], &amt);
     if (FAILED(hr)) {
-	ERR("Unable to retreive media type\n");
+	ERR("Unable to retrieve media type\n");
 	return hr;
     }
     format = (VIDEOINFOHEADER*)amt.pbFormat;
Index: dlls/winmm/tests/capture.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/tests/capture.c,v
retrieving revision 1.9
diff -u -r1.9 capture.c
--- dlls/winmm/tests/capture.c	19 Aug 2004 01:13:58 -0000	1.9
+++ dlls/winmm/tests/capture.c	24 Aug 2004 23:11:10 -0000
@@ -323,7 +323,7 @@
                                   WAVE_MAPPED, &capsA);
     }
 
-    /* Try a PCMWAVEFORMAT aligned next to an unaccessable page for bounds
+    /* Try a PCMWAVEFORMAT aligned next to an unaccessible page for bounds
      * checking */
     twoPages = VirtualAlloc(NULL, 2 * dwPageSize, MEM_RESERVE | MEM_COMMIT,
                             PAGE_READWRITE);
Index: dlls/winmm/tests/wave.c
===================================================================
RCS file: /var/cvs/wine/dlls/winmm/tests/wave.c,v
retrieving revision 1.41
diff -u -r1.41 wave.c
--- dlls/winmm/tests/wave.c	19 Aug 2004 01:13:58 -0000	1.41
+++ dlls/winmm/tests/wave.c	24 Aug 2004 23:11:28 -0000
@@ -627,7 +627,7 @@
                                     WAVE_MAPPED,&capsA);
     }
 
-    /* Try a PCMWAVEFORMAT aligned next to an unaccessable page for bounds
+    /* Try a PCMWAVEFORMAT aligned next to an unaccessible page for bounds
      * checking */
     twoPages = VirtualAlloc(NULL, 2 * dwPageSize, MEM_RESERVE | MEM_COMMIT,
                             PAGE_READWRITE);
Index: include/basetsd.h
===================================================================
RCS file: /var/cvs/wine/include/basetsd.h,v
retrieving revision 1.13
diff -u -r1.13 basetsd.h
--- include/basetsd.h	4 May 2004 00:43:02 -0000	1.13
+++ include/basetsd.h	24 Aug 2004 10:43:37 -0000
@@ -38,7 +38,7 @@
  * type model where int and long are 32 bit and pointer is 64-bit.
  */
 
-/* Type model indepent typedefs */
+/* Type model independent typedefs */
 /* The __intXX types are native types defined by the MS C compiler.
  * Apps that make use of them before they get defined here, can
  * simply add to the command line:
Index: include/winnt.h
===================================================================
RCS file: /var/cvs/wine/include/winnt.h,v
retrieving revision 1.191
diff -u -r1.191 winnt.h
--- include/winnt.h	24 Aug 2004 20:16:25 -0000	1.191
+++ include/winnt.h	24 Aug 2004 21:15:49 -0000
@@ -2636,7 +2636,7 @@
  */
 
 /*
- * First a constant for the following typdefs.
+ * First a constant for the following typedefs.
  */
 
 #define ANYSIZE_ARRAY   1


More information about the wine-patches mailing list