Francois Gouget : Assorted spelling and English fixes.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Apr 3 06:48:27 CDT 2007


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Apr  2 19:17:56 2007 +0200

Assorted spelling and English fixes.

---

 dlls/comctl32/tests/tab.c      |    2 +-
 dlls/kernel32/tests/profile.c  |    2 +-
 dlls/localspl/tests/localmon.c |    2 +-
 dlls/ole32/stg_bigblockfile.c  |    4 ++--
 dlls/rpcrt4/rpcss_np_client.c  |    4 ++--
 dlls/wined3d/state.c           |    2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dlls/comctl32/tests/tab.c b/dlls/comctl32/tests/tab.c
index 59cd969..6f7259f 100644
--- a/dlls/comctl32/tests/tab.c
+++ b/dlls/comctl32/tests/tab.c
@@ -719,7 +719,7 @@ static void test_getters_setters(INT nTabs)
 
         flush_sequences(sequences, NUM_MSG_SEQUENCES);
 
-        /* Testing Flat Seperators */
+        /* Testing Flat Separators */
         extendedStyle = SendMessage(hTab, TCM_GETEXTENDEDSTYLE, 0, 0);
         prevExtendedStyle = SendMessage(hTab, TCM_SETEXTENDEDSTYLE, 0, TCS_EX_FLATSEPARATORS);
             expect(extendedStyle, prevExtendedStyle);
diff --git a/dlls/kernel32/tests/profile.c b/dlls/kernel32/tests/profile.c
index 628a40b..272ba9c 100644
--- a/dlls/kernel32/tests/profile.c
+++ b/dlls/kernel32/tests/profile.c
@@ -236,7 +236,7 @@ static void test_profile_sections_names(void)
     
     DeleteFileA( testfile3 );
 
-    /* Tests on non-existent file */
+    /* Tests on nonexistent file */
     memset(buf, 0xcc, sizeof(buf));
     ret = GetPrivateProfileSectionNamesA( buf, 10, ".\\not_here.ini" );
     ok( ret == 0, "expected return size 0, got %d\n", ret );
diff --git a/dlls/localspl/tests/localmon.c b/dlls/localspl/tests/localmon.c
index a89f0da..af2611e 100644
--- a/dlls/localspl/tests/localmon.c
+++ b/dlls/localspl/tests/localmon.c
@@ -539,7 +539,7 @@ static void test_XcvDataPort_DeletePort(void)
     /* ToDo: cmd_AddPortW for tempfileW, then cmd_DeletePortW for the existing Port */
 
 
-    /* try to delete a non-existing Port */
+    /* try to delete a nonexistent Port */
     needed = (DWORD) 0xdeadbeef;
     SetLastError(0xdeadbeef);
     res = pXcvDataPort(hXcv, cmd_DeletePortW, (PBYTE) tempfileW, (lstrlenW(tempfileW) + 1) * sizeof(WCHAR), NULL, 0, &needed);
diff --git a/dlls/ole32/stg_bigblockfile.c b/dlls/ole32/stg_bigblockfile.c
index a208bb8..08fc546 100644
--- a/dlls/ole32/stg_bigblockfile.c
+++ b/dlls/ole32/stg_bigblockfile.c
@@ -745,7 +745,7 @@ static HRESULT WINAPI ImplBIGBLOCKFILE_ReadAt(
 
     TRACE("(%p)-> %i %p %i %p\n",This, ulOffset.u.LowPart, pv, cb, pcbRead);
 
-    /* verify a sane enviroment */
+    /* verify a sane environment */
     if (!This) return E_FAIL;
 
     if (offset_in_page + bytes_left > PAGE_SIZE)
@@ -833,7 +833,7 @@ static HRESULT WINAPI ImplBIGBLOCKFILE_WriteAt(
 
     TRACE("(%p)-> %i %p %i %p\n",This, ulOffset.u.LowPart, pv, cb, pcbWritten);
 
-    /* verify a sane enviroment */
+    /* verify a sane environment */
     if (!This) return E_FAIL;
 
     if (This->flProtect != PAGE_READWRITE)
diff --git a/dlls/rpcrt4/rpcss_np_client.c b/dlls/rpcrt4/rpcss_np_client.c
index dc57fd2..016f77f 100644
--- a/dlls/rpcrt4/rpcss_np_client.c
+++ b/dlls/rpcrt4/rpcss_np_client.c
@@ -77,8 +77,8 @@ HANDLE RPCRT4_RpcssNPConnect(void)
     if (!ReleaseMutex(master_mutex))
       ERR("Failed to release master mutex.  Expect deadlock.\n");
 
-    /* wait for the named pipe.  We are only 
-       willing to wait only 5 seconds.  It should be available /very/ soon. */
+    /* wait for the named pipe.  We are only willing to wait for 5 seconds.
+       It should be available /very/ soon. */
     if (! WaitNamedPipeA(NAME_RPCSS_NAMED_PIPE, MASTER_MUTEX_WAITNAMEDPIPE_TIMEOUT))
     {
       ERR("Named pipe unavailable after waiting.  Something is probably wrong.\n");
diff --git a/dlls/wined3d/state.c b/dlls/wined3d/state.c
index 07af88d..9f6a215 100644
--- a/dlls/wined3d/state.c
+++ b/dlls/wined3d/state.c
@@ -2865,7 +2865,7 @@ static void loadVertexData(IWineD3DStateBlockImpl *stateblock, WineDirect3DVerte
         }
     }
     if (GL_SUPPORT(NV_REGISTER_COMBINERS)) {
-        /* The number of the mapped stages increses monotonic, so we're fine to use the last used one */
+        /* The number of the mapped stages increases monotonically, so it's fine to use the last used one */
         for (textureNo = mapped_stage + 1; textureNo < GL_LIMITS(textures); ++textureNo) {
             GL_EXTCALL(glClientActiveTextureARB(GL_TEXTURE0_ARB + textureNo));
             glDisableClientState(GL_TEXTURE_COORD_ARRAY);




More information about the wine-cvs mailing list