Spelling fixes.
authorAustin English <austinenglish@gmail.com>
Thu, 3 Apr 2008 17:10:30 +0000 (12:10 -0500)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 4 Apr 2008 09:51:40 +0000 (11:51 +0200)
14 files changed:
dlls/gdi32/enhmetafile.c
dlls/gdi32/font.c
dlls/gdi32/tests/bitmap.c
dlls/gdiplus/graphicspath.c
dlls/gphoto2.ds/gphoto2_i.h
dlls/icmp/icmp_main.c
dlls/imaadp32.acm/imaadp32.c
dlls/iphlpapi/ifenum.h
dlls/iphlpapi/iphlpapi_main.c
dlls/itss/chm_lib.c
dlls/kernel32/snoop16.c
dlls/kernel32/tests/path.c
dlls/kernel32/time.c
dlls/localspl/localspl_main.c

index 150b82a7f6fd333b5929f70ab31035b2957c9fe7..39b605792136c0f47278b638c18e5e8050d0be31 100644 (file)
@@ -1670,7 +1670,7 @@ BOOL WINAPI PlayEnhMetaFileRecord(
         LPVOID lpPackedStruct;
 
         /* Check that offsets and data are contained within the record
-         * (including checking for wrap arounds).
+         * (including checking for wrap-arounds).
          */
         if (    lpCreate->offBmi  + lpCreate->cbBmi  > mr->nSize
              || lpCreate->offBits + lpCreate->cbBits > mr->nSize
index 952e72039ccf4531686664afe84e30b9334cd7f6..70a043e5fd8edfb012a5e403026cf2ea74373cbc 100644 (file)
@@ -2418,7 +2418,7 @@ BOOL WINAPI CreateScalableFontResourceW( DWORD fHidden,
           debugstr_w(lpszCurrentPath) );
 
     /* fHidden=1 - only visible for the calling app, read-only, not
-     * enumbered with EnumFonts/EnumFontFamilies
+     * enumerated with EnumFonts/EnumFontFamilies
      * lpszCurrentPath can be NULL
      */
 
index 09b628757a19fba83db04f49ede698d40a3bd1e4..67bb27fc82e99edd5db017d83dc3e114b4bcc05f 100644 (file)
@@ -1603,7 +1603,7 @@ static void test_GetDIBits_BI_BITFIELDS(void)
      * http://www.lesher.ws/highcolor.html
      * http://www.lesher.ws/vidfmt.c
      * It hinges on being able to retrieve the bitmaps
-     * for the three primary colors in nonpaletted 16 bit mode.
+     * for the three primary colors in non-paletted 16 bit mode.
      */
     char dibinfo_buf[sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD)];
     LPBITMAPINFO dibinfo = (LPBITMAPINFO) dibinfo_buf;
index 69a9526306333bbc146c8f65f0712ea883292cf0..adeaa89187210c85ffa7bf31ff9102a20200a9f8 100644 (file)
@@ -179,7 +179,7 @@ GpStatus WINGDIPAPI GdipAddPathEllipse(GpPath *path, REAL x, REAL y, REAL width,
     memset(&path->pathdata.Types[old_count + 1], PathPointTypeBezier,
            MAX_ARC_PTS - 1);
 
-    /* An ellipse is an instrinsic figure (always its own subpath). */
+    /* An ellipse is an intrinsic figure (always is its own subpath). */
     path->pathdata.Types[old_count] = PathPointTypeStart;
     path->pathdata.Types[old_count + MAX_ARC_PTS - 1] |= PathPointTypeCloseSubpath;
     path->newfigure = TRUE;
index 265da491ed5c0127cacaadc5d6df0fa618c53d2f..e92a5e83ae5d9f45a6b33416dd8017a34d18f6ca 100644 (file)
@@ -82,7 +82,7 @@ struct tagActiveDS
     GPContext          *context;
 #endif
 
-    /* Capabiblities */
+    /* Capabilities */
     TW_UINT32          capXferMech;            /* ICAP_XFERMECH */
     TW_UINT16          pixeltype;              /* ICAP_PIXELTYPE */
     TW_UINT16          pixelflavor;            /* ICAP_PIXELFLAVOR */
index 8834282d5e475d759a426bdda139a1e515d18a6b..82243daaaf4eba4f23d2245ad4fea97eff3c6e5d 100644 (file)
@@ -72,7 +72,7 @@
 #include "icmpapi.h"
 #include "wine/debug.h"
 
-/* Set up endiannes macros for the ip and ip_icmp BSD headers */
+/* Set up endianness macros for the ip and ip_icmp BSD headers */
 #ifndef BIG_ENDIAN
 #define BIG_ENDIAN       4321
 #endif
index e5b1544f21f24930d89a02f30baf19c0bf7c030a..1b44c0badd5e30e8c9371c2309f6a3ee0c3dbcb0 100644 (file)
@@ -711,7 +711,7 @@ static      LRESULT ADPCM_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
 
         /* we check that in a block, after the header, samples are present on
          * 4-sample packet pattern
-         * we also check that the block alignement is bigger than the expected size
+         * we also check that the block alignment is bigger than the expected size
          */
         if (((nspb - 1) & 3) != 0) goto theEnd;
         if ((((nspb - 1) / 2) + 4) * adsi->pwfxSrc->nChannels < adsi->pwfxSrc->nBlockAlign)
@@ -736,7 +736,7 @@ static      LRESULT ADPCM_StreamOpen(PACMDRVSTREAMINSTANCE adsi)
 
         /* we check that in a block, after the header, samples are present on
          * 4-sample packet pattern
-         * we also check that the block alignement is bigger than the expected size
+         * we also check that the block alignment is bigger than the expected size
          */
         if (((nspb - 1) & 3) != 0) goto theEnd;
         if ((((nspb - 1) / 2) + 4) * adsi->pwfxDst->nChannels < adsi->pwfxDst->nBlockAlign)
index 30a48e303904f459be8f2d3f648b39bd56aaee16..775244cdc242eb92b4e1a35d83a5d8e4002d83b9 100644 (file)
@@ -73,7 +73,7 @@ char *getInterfaceNameByIndex(DWORD index, char *name);
  */
 DWORD getInterfaceIndexByName(const char *name, PDWORD index);
 
-/* Gets a few physical charactersistics of a device:  MAC addr len, MAC addr,
+/* Gets a few physical characteristics of a device:  MAC addr len, MAC addr,
  * and type as one of the MIB_IF_TYPEs.
  * len's in-out: on in, needs to say how many bytes are available in addr,
  * which to be safe should be MAX_INTERFACE_PHYSADDR.  On out, it's how many
index 748a74ac8b3c79e8b525de0cef2c917f944aa893..764ae58dfd3b70ece9f996971df88db55f788edc 100644 (file)
@@ -1769,7 +1769,7 @@ DWORD WINAPI GetUniDirectionalAdapterInfo(PIP_UNIDIRECTIONAL_ADAPTER_ADDRESS pIP
 /******************************************************************
  *    IpReleaseAddress (IPHLPAPI.@)
  *
- * Release an IP optained through DHCP,
+ * Release an IP obtained through DHCP,
  *
  * PARAMS
  *  AdapterInfo [In] adapter to release IP address
@@ -1828,7 +1828,7 @@ DWORD WINAPI IpRenewAddress(PIP_ADAPTER_INDEX_MAP AdapterInfo)
  * Notify caller whenever the ip-interface map is changed.
  *
  * PARAMS
- *  Handle     [Out] handle useable in asynchronus notification
+ *  Handle     [Out] handle usable in asynchronous notification
  *  overlapped [In]  overlapped structure that notifies the caller
  *
  * RETURNS
index 6a9626faeec26a862b297a08f7a7178030f9de9c..3b98d5e781e26c896c3d09d18b3fbd3938419751 100644 (file)
@@ -1162,7 +1162,7 @@ static Int64 _chm_decompress_block(struct chmFile *h,
     Int64 cmpLen;                                       /* compressed len    */
     int indexSlot;                                      /* cache index slot  */
     UChar *lbuffer;                                     /* local buffer ptr  */
-    UInt32 blockAlign = (UInt32)(block % h->reset_blkcount); /* reset intvl. aln. */
+    UInt32 blockAlign = (UInt32)(block % h->reset_blkcount); /* reset interval align */
     UInt32 i;                                           /* local loop index  */
 
     /* let the caching system pull its weight! */
index fb82ba9635ea2d9c6fa648ddd75e208b47e3ff79..210f74c3c81c30a0d7b460923b3f4cb01f897e37 100644 (file)
@@ -174,7 +174,7 @@ SNOOP16_GetProcAddress16(HMODULE16 hmod,DWORD ordinal,FARPROC16 origfun) {
 
        if (!TRACE_ON(snoop) || !pModule || !HIWORD(origfun))
                return origfun;
-       if (!*(LPBYTE)MapSL((SEGPTR)origfun)) /* 0x00 is an imposs. opcode, poss. dataref. */
+       if (!*(LPBYTE)MapSL((SEGPTR)origfun)) /* 0x00 is an impossible opcode, possible dataref. */
                return origfun;
        while (dll) {
                if (hmod == dll->hmod)
index e3851df7cd82ba2c31bb6dbec270db7fe0d5175c..44a936e05018d4670abace42b51b014ddc1da0bb 100644 (file)
@@ -859,7 +859,7 @@ static void test_GetTempPathW(char* tmp_dir)
 
     /* This one is different from ANSI version: ANSI version doesn't
      * touch the buffer, unicode version usually truncates the buffer
-     * to zero size. NT still exagerates the required buffer size
+     * to zero size. NT still exaggerates the required buffer size
      * sometimes so we cannot test for an exact match. Finally, the
      * 'len_with_null - 1' case is so buggy on Windows it's not testable.
      * For instance on NT4 it will sometimes return a path without the
index cd14f9f827610a6b838aca0b19220946e9274391..9f33af635f86c55c8f0d559ff2a9e1e276e0d2fb 100644 (file)
@@ -391,7 +391,7 @@ BOOL WINAPI SetSystemTimeAdjustment( DWORD dwTimeAdjustment, BOOL bTimeAdjustmen
  *  TIME_ZONE_ID_INVALID    An error occurred
  *  TIME_ZONE_ID_UNKNOWN    There are no transition time known
  *  TIME_ZONE_ID_STANDARD   Current time is standard time
- *  TIME_ZONE_ID_DAYLIGHT   Current time is dayligh savings time
+ *  TIME_ZONE_ID_DAYLIGHT   Current time is daylight savings time
  */
 DWORD WINAPI GetTimeZoneInformation( LPTIME_ZONE_INFORMATION tzinfo )
 {
index 77fb730bf3782b3d095ebc252f62b70eb9d95d87..8efb7cbb403fc21e35def04f5c0658ffa25e77de 100644 (file)
@@ -394,7 +394,7 @@ static BOOL WINAPI fpGetPrinterDriverDirectory(LPWSTR pName, LPWSTR pEnvironment
  *  myAddPrinterDriverEx [internal]
  *
  * Install a Printer Driver with the Option to upgrade / downgrade the Files
- * and a special mode with lazy error ckecking
+ * and a special mode with lazy error checking.
  *
  */
 static BOOL WINAPI myAddPrinterDriverEx(DWORD level, LPBYTE pDriverInfo, DWORD dwFileCopyFlags, BOOL lazy)