Francois Gouget : Assorted spelling fixes.

Alexandre Julliard julliard at winehq.org
Tue Jul 3 10:58:25 CDT 2012


Module: wine
Branch: master
Commit: 6333fa753a196c14acc18c42c1a32b601d5eca9f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=6333fa753a196c14acc18c42c1a32b601d5eca9f

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Jul  3 09:13:55 2012 +0200

Assorted spelling fixes.

---

 dlls/dinput/device.c          |    6 +++---
 dlls/msvcp90/ios.c            |    2 +-
 dlls/msvcp90/locale.c         |    4 ++--
 dlls/wbemprox/query.c         |    2 +-
 dlls/ws2_32/socket.c          |    2 +-
 programs/wineconsole/curses.c |    2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dlls/dinput/device.c b/dlls/dinput/device.c
index f5b7b4b..bf5fd1b 100644
--- a/dlls/dinput/device.c
+++ b/dlls/dinput/device.c
@@ -605,7 +605,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
 
     for (i=0; i < lpdiaf->dwNumActions; i++)
     {
-        /* Don't touch an user configured action */
+        /* Don't touch a user configured action */
         if (lpdiaf->rgoAction[i].dwHow == DIAH_USERCONFIG) continue;
 
         if ((lpdiaf->rgoAction[i].dwSemantic & devMask) == devMask)
@@ -619,7 +619,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
             if (type == DIDFT_PSHBUTTON) type = DIDFT_BUTTON;
             if (type == DIDFT_RELAXIS) type = DIDFT_AXIS;
 
-            /* Assure that the object exists */
+            /* Make sure the object exists */
             odf = dataformat_to_odf_by_type(df, inst, type);
 
             if (odf != NULL)
@@ -632,7 +632,7 @@ HRESULT _build_action_map(LPDIRECTINPUTDEVICE8W iface, LPDIACTIONFORMATW lpdiaf,
         }
         else if (!(dwFlags & DIDBAM_PRESERVE))
         {
-            /* we must clear action data belonging to other devices */
+            /* We must clear action data belonging to other devices */
             memset(&lpdiaf->rgoAction[i].guidInstance, 0, sizeof(GUID));
             lpdiaf->rgoAction[i].dwHow = DIAH_UNMAPPED;
         }
diff --git a/dlls/msvcp90/ios.c b/dlls/msvcp90/ios.c
index a39d065..c5ecf9e 100644
--- a/dlls/msvcp90/ios.c
+++ b/dlls/msvcp90/ios.c
@@ -2494,7 +2494,7 @@ int __thiscall basic_filebuf_char_uflow(basic_filebuf_char *this)
         }
     }
 
-    FIXME("buffer is to small\n");
+    FIXME("buffer is too small\n");
     return EOF;
 }
 
diff --git a/dlls/msvcp90/locale.c b/dlls/msvcp90/locale.c
index c8d4aca..d3b0262 100644
--- a/dlls/msvcp90/locale.c
+++ b/dlls/msvcp90/locale.c
@@ -5530,7 +5530,7 @@ num_get* num_get_char_use_facet(const locale *loc)
 /* Copies number to dest buffer, validates grouping and skips separators.
  * Updates first so it points past the number, all digits are skipped.
  * Returns how exponent needs to changed.
- * Size of dest buffer is not specified, assuming it's not smaller then 32:
+ * Size of dest buffer is not specified, assuming it's not smaller than 32:
  * strlen(+0.e+) + 22(digits) + 4(expontent) + 1(nullbyte)
  */
 int __cdecl num_get_char__Getffld(const num_get *this, char *dest, istreambuf_iterator_char *first,
@@ -5685,7 +5685,7 @@ int __cdecl num_get_char__Getffldx(const num_get *this, char *dest, istreambuf_i
 /* Copies number to dest buffer, validates grouping and skips separators.
  * Updates first so it points past the number, all digits are skipped.
  * Returns number base (8, 10 or 16).
- * Size of dest buffer is not specified, assuming it's not smaller then 25:
+ * Size of dest buffer is not specified, assuming it's not smaller than 25:
  * 22(8^22>2^64)+1(detect overflows)+1(sign)+1(nullbyte) = 25
  */
 int __cdecl num_get_char__Getifld(const num_get *this, char *dest, istreambuf_iterator_char *first,
diff --git a/dlls/wbemprox/query.c b/dlls/wbemprox/query.c
index 2a7c088..798fda3 100644
--- a/dlls/wbemprox/query.c
+++ b/dlls/wbemprox/query.c
@@ -63,7 +63,7 @@ static UINT get_column_size( const struct table *table, UINT column )
     case CIM_STRING:
         return sizeof(WCHAR *);
     default:
-        ERR("unkown column type %u\n", table->columns[column].type & COL_TYPE_MASK);
+        ERR("unknown column type %u\n", table->columns[column].type & COL_TYPE_MASK);
         break;
     }
     return sizeof(INT32);
diff --git a/dlls/ws2_32/socket.c b/dlls/ws2_32/socket.c
index 51016b7..212733b 100644
--- a/dlls/ws2_32/socket.c
+++ b/dlls/ws2_32/socket.c
@@ -5605,7 +5605,7 @@ static struct WS_hostent *WS_create_he(char *name, int aliases, int aliases_size
     memset(p_to, 0, size);
 
     /* Use the memory in the same way winsock does.
-     * First set the pointer for aliases, second set the pointers for addressess.
+     * First set the pointer for aliases, second set the pointers for addresses.
      * Third fill the addresses indexes, fourth jump aliases names size.
      * Fifth fill the hostname.
      * NOTE: This method is valid for OS version's >= XP.
diff --git a/programs/wineconsole/curses.c b/programs/wineconsole/curses.c
index 4461c73..4c75a6f 100644
--- a/programs/wineconsole/curses.c
+++ b/programs/wineconsole/curses.c
@@ -670,7 +670,7 @@ static unsigned WCCURSES_FillMouse(INPUT_RECORD* ir)
     WINE_TRACE("[%u]: (%d, %d) %08lx\n", 
                mevt.id, mevt.x, mevt.y, (unsigned long)mevt.bstate);
 
-    /* macros to ease mapping ncurse button numbering to windows' one */
+    /* macros to ease mapping ncurses button numbering to windows' one */
 #define	BTN1_BIT	FROM_LEFT_1ST_BUTTON_PRESSED
 #define	BTN2_BIT	RIGHTMOST_BUTTON_PRESSED
 #define	BTN3_BIT	FROM_LEFT_2ND_BUTTON_PRESSED




More information about the wine-cvs mailing list