[PATCH] Assorted spelling fixes

Detlef Riekenberg wine.dev at web.de
Fri Dec 7 14:01:34 CST 2007


---
 dlls/comctl32/propsheet.c   |    2 +-
 dlls/dbghelp/msc.c          |    2 +-
 dlls/gdi32/bidi.c           |    2 +-
 dlls/gdi32/font.c           |    2 +-
 dlls/kernel32/tests/drive.c |    4 ++--
 dlls/opengl32/make_opengl   |    4 ++--
 dlls/opengl32/opengl_ext.c  |    2 +-
 dlls/wined3d/device.c       |    2 +-
 8 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/comctl32/propsheet.c b/dlls/comctl32/propsheet.c
index 9828d6f..6331ccc 100644
--- a/dlls/comctl32/propsheet.c
+++ b/dlls/comctl32/propsheet.c
@@ -2081,7 +2081,7 @@ static BOOL PROPSHEET_SetCurSel(HWND hwn
       index = PROPSHEET_FindPageByResId(psInfo, result);
       if(index >= psInfo->nPages) {
         index = old_index;
-        WARN("Tried to skip to nonexistant page by res id\n");
+        WARN("Tried to skip to nonexistent page by res id\n");
         break;
       }
       continue;
diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c
index c04fa79..5e6f8a8 100644
--- a/dlls/dbghelp/msc.c
+++ b/dlls/dbghelp/msc.c
@@ -355,7 +355,7 @@ static int codeview_add_type(unsigned in
     if (cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE])
     {
         if (cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE] != dt)
-            FIXME("Overwritting at %x\n", typeno);
+            FIXME("Overwriting at %x\n", typeno);
     }
     cv_current_module->defined_types[typeno - FIRST_DEFINABLE_TYPE] = dt;
     return TRUE;
diff --git a/dlls/gdi32/bidi.c b/dlls/gdi32/bidi.c
index 7505a91..5b787d3 100644
--- a/dlls/gdi32/bidi.c
+++ b/dlls/gdi32/bidi.c
@@ -231,7 +231,7 @@ static void SetDeferredRun(WORD *pval, i
 
     Output: revised character count
 
-    Note:    This is a very simplfistic function. In effect it restricts
+    Note:    This is a very simplistic function. In effect it restricts
             the action of the algorithm to the first paragraph in the input
             where a paragraph ends at the end of the first block separator
             or at the end of the input text.
diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c
index 1a179d5..9fba58e 100644
--- a/dlls/gdi32/font.c
+++ b/dlls/gdi32/font.c
@@ -2780,7 +2780,7 @@ DWORD WINAPI GetKerningPairsW( HDC hDC, 
  * TranslateCharsetInfo [GDI32.@]
  *
  * Fills a CHARSETINFO structure for a character set, code page, or
- * font. This allows making the correspondance between different labelings
+ * font. This allows making the correspondence between different labelings
  * (character set, Windows, ANSI, and OEM codepages, and Unicode ranges)
  * of the same encoding.
  *
diff --git a/dlls/kernel32/tests/drive.c b/dlls/kernel32/tests/drive.c
index 52afc93..a8cc165 100644
--- a/dlls/kernel32/tests/drive.c
+++ b/dlls/kernel32/tests/drive.c
@@ -43,7 +43,7 @@ static void test_GetDriveTypeA(void)
 
         if (!(logical_drives & 1))
             ok(type == DRIVE_NO_ROOT_DIR,
-               "GetDriveTypeA should return DRIVE_NO_ROOT_DIR for inexistant drive %c: but not %u\n",
+               "GetDriveTypeA should return DRIVE_NO_ROOT_DIR for inexistent drive %c: but not %u\n",
                drive[0], type);
 
         logical_drives >>= 1;
@@ -71,7 +71,7 @@ static void test_GetDriveTypeW(void)
 
         if (!(logical_drives & 1))
             ok(type == DRIVE_NO_ROOT_DIR,
-               "GetDriveTypeW should return DRIVE_NO_ROOT_DIR for inexistant drive %c: but not %u\n",
+               "GetDriveTypeW should return DRIVE_NO_ROOT_DIR for inexistent drive %c: but not %u\n",
                drive[0], type);
 
         logical_drives >>= 1;
diff --git a/dlls/opengl32/make_opengl b/dlls/opengl32/make_opengl
index 824dd1c..2fb447b 100755
--- a/dlls/opengl32/make_opengl
+++ b/dlls/opengl32/make_opengl
@@ -702,8 +702,8 @@ foreach (sort keys %ext_functions) {
     print EXT "\nstatic ", GenerateThunk($ext_functions{$_}, 0, $ext_prefix, $gen_thread_safe, $local_var);
 }
 
-# Then the table giving the string <-> function correspondance */
-print EXT "\n\n/* The table giving the correspondance between names and functions */\n";
+# Then the table giving the string <-> function correspondence */
+print EXT "\n\n/* The table giving the correspondence between names and functions */\n";
 print EXT "const OpenGL_extension extension_registry[$count] = {\n";
 my $i = 0;
 foreach (sort keys %ext_functions) {
diff --git a/dlls/opengl32/opengl_ext.c b/dlls/opengl32/opengl_ext.c
index fc870ee..5a37ed9 100644
--- a/dlls/opengl32/opengl_ext.c
+++ b/dlls/opengl32/opengl_ext.c
@@ -9706,7 +9706,7 @@ static void WINAPI wine_glWriteMaskEXT( 
 }
 
 
-/* The table giving the correspondance between names and functions */
+/* The table giving the correspondence between names and functions */
 const OpenGL_extension extension_registry[1197] = {
   { "glActiveStencilFaceEXT", "GL_EXT_stencil_two_side", (void *) wine_glActiveStencilFaceEXT },
   { "glActiveTexture", "GL_VERSION_1_3", (void *) wine_glActiveTexture },
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c
index 622d892..2a80636 100644
--- a/dlls/wined3d/device.c
+++ b/dlls/wined3d/device.c
@@ -5761,7 +5761,7 @@ static HRESULT WINAPI IWineD3DDeviceImpl
     }
 
     /* TODO: Write a test for the return value */
-    FIXME("Attempt to destroy nonexistant patch\n");
+    FIXME("Attempt to destroy nonexistent patch\n");
     return WINED3DERR_INVALIDCALL;
 }
 
-- 
1.4.1


--=-IwphUyQsfYSkTijojL5B--




More information about the wine-patches mailing list