Francois Gouget : Assorted spelling fixes.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Feb 6 15:01:05 CST 2006


Module: wine
Branch: refs/heads/master
Commit: 379b62c04ee5f134f0b38ead63cf7ca1aec61a7c
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=379b62c04ee5f134f0b38ead63cf7ca1aec61a7c

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Feb  6 20:58:36 2006 +0100

Assorted spelling fixes.

---

 dlls/comctl32/progress.c |    2 +-
 dlls/crypt32/tests/str.c |    2 +-
 dlls/oleaut32/variant.h  |    2 +-
 dlls/user/tests/menu.c   |   14 +++++++-------
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dlls/comctl32/progress.c b/dlls/comctl32/progress.c
index cfed7ec..9592cd6 100644
--- a/dlls/comctl32/progress.c
+++ b/dlls/comctl32/progress.c
@@ -132,7 +132,7 @@ static inline int get_bar_position( PROG
  * PROGRESS_Invalidate
  *
  * Don't be too clever about invalidating the progress bar.
- * Installshield depends on this simple behaviour.
+ * InstallShield depends on this simple behaviour.
  */
 static void PROGRESS_Invalidate( PROGRESS_INFO *infoPtr, INT old, INT new )
 {
diff --git a/dlls/crypt32/tests/str.c b/dlls/crypt32/tests/str.c
index a099ba7..42fd271 100644
--- a/dlls/crypt32/tests/str.c
+++ b/dlls/crypt32/tests/str.c
@@ -1,7 +1,7 @@
 /*
  * Unit test suite for crypt32.dll's Cert*ToStr and CertStrToName functions.
  *
- * Copyright 2006 Juan Lang, Aric Stewart for Codeweavers
+ * Copyright 2006 Juan Lang, Aric Stewart for CodeWeavers
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
diff --git a/dlls/oleaut32/variant.h b/dlls/oleaut32/variant.h
index 42c5e76..decf337 100644
--- a/dlls/oleaut32/variant.h
+++ b/dlls/oleaut32/variant.h
@@ -34,7 +34,7 @@
 /* Get the extra flags from a variant pointer */
 #define V_EXTRA_TYPE(v) (V_VT((v)) & VT_EXTRA_TYPE)
 
-/* Missing in Windows but usefull VTBIT_* defines */
+/* Missing in Windows but useful VTBIT_* defines */
 #define VTBIT_BOOL      (1 << VT_BSTR)
 #define VTBIT_BSTR      (1 << VT_BSTR)
 #define VTBIT_DATE      (1 << VT_DATE)
diff --git a/dlls/user/tests/menu.c b/dlls/user/tests/menu.c
index 0ae0d2b..442cc97 100644
--- a/dlls/user/tests/menu.c
+++ b/dlls/user/tests/menu.c
@@ -125,7 +125,7 @@ static void register_menu_check_class(vo
     atomMenuCheckClass = RegisterClass(&wc);
 }
 
-/* demonstrates that windows lock the menu object so that it is still valid
+/* demonstrates that windows locks the menu object so that it is still valid
  * even after a client calls DestroyMenu on it */
 static void test_menu_locked_by_window(void)
 {
@@ -225,7 +225,7 @@ static void test_menu_ownerdraw(void)
             "Height is incorrect. Got %ld expected %d\n",
             MOD_rc[0].bottom - MOD_rc[0].top, MOD_SIZE);
 
-    /* test width/height of a OD menu bar as well */
+    /* test width/height of an ownerdraw menu bar as well */
     ret = DestroyMenu(hmenu);
     ok(ret, "DestroyMenu failed with error %ld\n", GetLastError());
     hmenu = CreateMenu();
@@ -326,7 +326,7 @@ static void test_menu_add_string( void )
     rc = SetMenuItemInfo( hmenu, 0, TRUE, &info );
     ok (!rc, "SetMenuItemInfo unexpectedly worked\n");
 
-    /* Just change ftype back and ensure data hasnt been freed */
+    /* Just change ftype back and ensure data hasn't been freed */
     info.fType= MFT_OWNERDRAW; /* Set as ownerdraw type */
     info.dwTypeData= (char *)0xdeadbee3; 
     rc = SetMenuItemInfo( hmenu, 0, TRUE, &info );
@@ -549,7 +549,7 @@ static void test_menu_iteminfo( void )
         {, S, MIIM_TYPE, MFT_OWNERDRAW, -9, -9, 0, -9, -9, -9, NULL, 0, 0, },
         empty, OK, ER )
     TMII_DONE
-    /* can not combine MIIM_TYPE with some other flags */
+    /* cannot combine MIIM_TYPE with some other flags */
     TMII_INSMI( {, S, MIIM_TYPE|MIIM_STRING, MFT_STRING, -1, -1, -1, -1, -1, -1, txt, 6, -1, }, ER)
     TMII_GMII ( {, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, },
         {, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, },
@@ -887,7 +887,7 @@ static void test_menu_iteminfo( void )
 }
 
 /* 
-   The following tests try to confirm the algorithum used to return the menu items 
+   The following tests try to confirm the algorithm used to return the menu items 
    when there is a collision between a menu item and a popup menu
  */
 void test_menu_search_bycommand( void )
@@ -1021,7 +1021,7 @@ void test_menu_search_bycommand( void )
     rc = InsertMenuItem(hmenu, 0, TRUE, &info );
     ok (rc, "Inserting the menuitem failed\n");
 
-    /* Search by id - returns the item which preceeds the popup menu */
+    /* Search by id - returns the item which precedes the popup menu */
     memset( &info, 0, sizeof info );
     strback[0] = 0x00;
     info.cbSize = sizeof(MENUITEMINFO);
@@ -1068,7 +1068,7 @@ void test_menu_search_bycommand( void )
     rc = InsertMenuItem(hmenuSub, 1, TRUE, &info );
     ok (rc, "Inserting the sub menu menuitem 2 failed\n");
 
-    /* Prove that you cant query the id of a popup directly (By position) */
+    /* Prove that you can't query the id of a popup directly (By position) */
     id = GetMenuItemID(hmenu, 0);
     ok (id == -1, "Getting the sub menu id should have failed because its a popup (gave %x)\n", id);
 




More information about the wine-cvs mailing list