Assorted typo fixes

Francois Gouget fgouget at free.fr
Tue Feb 27 14:48:49 CST 2001


   Just the usual typos in comments fixes.

Changelog:

 * debugger/types.c,
   dlls/comctl32/listview.c,
   dlls/comctl32/pager.c,
   dlls/comctl32/toolbar.c,
   dlls/dplayx/dplay.c,
   dlls/msvcrt/process.c,
   dlls/msvcrt/process.c,
   dlls/ole32/antimoniker.c,
   dlls/ole32/bindctx.c,
   dlls/ole32/clipboard.c,
   dlls/ole32/compositemoniker.c,
   dlls/ole32/filemoniker.c,
   dlls/ole32/itemmoniker.c,
   dlls/ole32/moniker.c,
   dlls/ole32/storage32.c,
   dlls/oleaut32/typelib.c,
   dlls/oleaut32/variant.c,
   dlls/shell32/shlfolder.c,
   dlls/user/exticon.c,
   dlls/winspool/info.c,
   graphics/x11drv/graphics.c,
   include/ddraw.h,
   objects/metafile.c,
   programs/notepad/main.c,
   win32/device.c,
   windows/winpos.c,
   dlls/user/ddeml.c,

   Small 'typos in comments' fixes


--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
  Good judgment comes from experience, and experience comes from bad judgment
                               -- Barry LePatner
-------------- next part --------------
Index: debugger/types.c
===================================================================
RCS file: /home/wine/wine/debugger/types.c,v
retrieving revision 1.22
diff -u -r1.22 types.c
--- debugger/types.c	2000/12/01 20:45:59	1.22
+++ debugger/types.c	2001/02/27 19:14:48
@@ -4,7 +4,7 @@
  * Copyright (C) 1997, Eric Youngdale.
  *
  * This really doesn't do much at the moment, but it forms the framework
- * upon which full support for datatype handling will eventually be hung.
+ * upon which full support for datatype handling will eventually be built.
  */
 
 #include "config.h"
@@ -723,7 +723,7 @@
 	* DEBUG_GetObjectSize(dt->un.array.basictype);
     case DT_BITFIELD:
       /*
-       * Bitfields have to be handled seperately later on
+       * Bitfields have to be handled separately later on
        * when we insert the element into the structure.
        */
       return 0;
Index: dlls/comctl32/listview.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/listview.c,v
retrieving revision 1.98
diff -u -r1.98 listview.c
--- dlls/comctl32/listview.c	2001/02/16 19:39:14	1.98
+++ dlls/comctl32/listview.c	2001/02/27 19:14:52
@@ -1872,7 +1872,7 @@
 
 /***
  * DESCRIPTION:
- * Called whenever WM_MOUSEMOVE is recieved.
+ * Called whenever WM_MOUSEMOVE is received.
  *
  * PARAMETER(S):
  * [I] HWND : window handle
@@ -1901,7 +1901,7 @@
      if(!(trackinfo.dwFlags & TME_HOVER)) {
        trackinfo.dwFlags = TME_HOVER;
 
-       /* call TRACKMOUSEEVENT so we recieve WM_MOUSEHOVER messages */
+       /* call TRACKMOUSEEVENT so we receive WM_MOUSEHOVER messages */
        _TrackMouseEvent(&trackinfo);
     }
   }
Index: dlls/comctl32/pager.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/pager.c,v
retrieving revision 1.24
diff -u -r1.24 pager.c
--- dlls/comctl32/pager.c	2001/02/23 01:33:01	1.24
+++ dlls/comctl32/pager.c	2001/02/27 19:14:52
@@ -946,11 +946,11 @@
         /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
         _TrackMouseEvent(&trackinfo);
 
-        /* Make sure tracking is enabled so we recieve a WM_MOUSELEAVE message */
+        /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
         if(!(trackinfo.dwFlags & TME_LEAVE)) {
             trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
  
-           /* call TRACKMOUSEEVENT so we recieve a WM_MOUSELEAVE message */
+           /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
            /* and can properly deactivate the hot button */
            _TrackMouseEvent(&trackinfo);
         }
Index: dlls/comctl32/toolbar.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/toolbar.c,v
retrieving revision 1.82
diff -u -r1.82 toolbar.c
--- dlls/comctl32/toolbar.c	2001/02/20 00:48:37	1.82
+++ dlls/comctl32/toolbar.c	2001/02/27 19:14:55
@@ -3979,11 +3979,11 @@
     /* call _TrackMouseEvent to see if we are currently tracking for this hwnd */
     _TrackMouseEvent(&trackinfo);
 
-    /* Make sure tracking is enabled so we recieve a WM_MOUSELEAVE message */
+    /* Make sure tracking is enabled so we receive a WM_MOUSELEAVE message */
     if(!(trackinfo.dwFlags & TME_LEAVE)) {
         trackinfo.dwFlags = TME_LEAVE; /* notify upon leaving */
  
-        /* call TRACKMOUSEEVENT so we recieve a WM_MOUSELEAVE message */
+        /* call TRACKMOUSEEVENT so we receive a WM_MOUSELEAVE message */
         /* and can properly deactivate the hot toolbar button */
         _TrackMouseEvent(&trackinfo);
    }
Index: dlls/dplayx/dplay.c
===================================================================
RCS file: /home/wine/wine/dlls/dplayx/dplay.c,v
retrieving revision 1.27
diff -u -r1.27 dplay.c
--- dlls/dplayx/dplay.c	2001/02/12 03:48:24	1.27
+++ dlls/dplayx/dplay.c	2001/02/27 19:14:58
@@ -4015,7 +4015,7 @@
 
   TRACE( "Calling %s (SP entry point)\n", bIsDpSp ? "SPInit" : "DPLSPInit" );
   
-  /* FIXME: Need to break this out into a seperate routine for DP SP and
+  /* FIXME: Need to break this out into a separate routine for DP SP and
    *        DPL SP as they actually use different stuff... 
    */
   hr = (*SPInit)( &This->dp2->spData );
Index: dlls/msvcrt/process.c
===================================================================
RCS file: /home/wine/wine/dlls/msvcrt/process.c,v
retrieving revision 1.2
diff -u -r1.2 process.c
--- dlls/msvcrt/process.c	2001/01/22 02:21:54	1.2
+++ dlls/msvcrt/process.c	2001/02/27 19:15:00
@@ -82,7 +82,7 @@
   return -1; /* can't reach here */
 }
 
-/* INTERNAL: Convert argv list to a single 'delim'-seperated string */
+/* INTERNAL: Convert argv list to a single 'delim'-separated string */
 static char * __MSVCRT__argvtos(const char * *arg, char delim)
 {
   const char **search = arg;
Index: dlls/ole32/antimoniker.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/antimoniker.c,v
retrieving revision 1.4
diff -u -r1.4 antimoniker.c
--- dlls/ole32/antimoniker.c	2001/01/26 20:43:43	1.4
+++ dlls/ole32/antimoniker.c	2001/02/27 19:15:00
@@ -81,7 +81,7 @@
 HRESULT WINAPI AntiMonikerImpl_Destroy(AntiMonikerImpl* iface);
 
 /********************************************************************************/
-/* Virtual function table for the AntiMonikerImpl class witch  include Ipersist,*/
+/* Virtual function table for the AntiMonikerImpl class which  include IPersist,*/
 /* IPersistStream and IMoniker functions.                                       */
 static ICOM_VTABLE(IMoniker) VT_AntiMonikerImpl =
 {
Index: dlls/ole32/bindctx.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/bindctx.c,v
retrieving revision 1.6
diff -u -r1.6 bindctx.c
--- dlls/ole32/bindctx.c	2000/09/26 00:00:55	1.6
+++ dlls/ole32/bindctx.c	2001/02/27 19:15:00
@@ -40,11 +40,11 @@
                                      
     ULONG ref; /* reference counter for this object */
 
-    BindCtxObject* bindCtxTable; /* this is a table in witch all bounded objects are stored*/
+    BindCtxObject* bindCtxTable; /* this is a table in which all bounded objects are stored*/
     DWORD          bindCtxTableLastIndex;  /* first free index in the table */
     DWORD          bindCtxTableSize;   /* size table */
 
-    BIND_OPTS2 bindOption2; /* a structure witch contains the bind options*/
+    BIND_OPTS2 bindOption2; /* a structure which contains the bind options*/
 
 } BindCtxImpl;
 
Index: dlls/ole32/clipboard.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/clipboard.c,v
retrieving revision 1.17
diff -u -r1.17 clipboard.c
--- dlls/ole32/clipboard.c	2001/01/26 20:43:43	1.17
+++ dlls/ole32/clipboard.c	2001/02/27 19:15:01
@@ -1571,7 +1571,7 @@
   TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvObj);
 
   /*
-   * Since enumerators are seperate objects from the parent data object
+   * Since enumerators are separate objects from the parent data object
    * we only need to support the IUnknown and IEnumFORMATETC interfaces
    */
   
Index: dlls/ole32/compositemoniker.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/compositemoniker.c,v
retrieving revision 1.7
diff -u -r1.7 compositemoniker.c
--- dlls/ole32/compositemoniker.c	2001/01/26 20:43:43	1.7
+++ dlls/ole32/compositemoniker.c	2001/02/27 20:45:19
@@ -123,8 +123,8 @@
 HRESULT WINAPI EnumMonikerImpl_CreateEnumMoniker(IMoniker** tabMoniker,ULONG tabSize,ULONG currentPos,BOOL leftToRigth,IEnumMoniker ** ppmk);
 
 /********************************************************************************/
-/* Virtual function table for the CompositeMonikerImpl class witch  include     */
-/* Ipersist, IPersistStream and IMoniker functions.                             */
+/* Virtual function table for the CompositeMonikerImpl class which includes     */
+/* IPersist, IPersistStream and IMoniker functions.                             */
 
 static ICOM_VTABLE(IMoniker) VT_CompositeMonikerImpl =
 {
Index: dlls/ole32/filemoniker.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/filemoniker.c,v
retrieving revision 1.8
diff -u -r1.8 filemoniker.c
--- dlls/ole32/filemoniker.c	2001/01/26 20:40:50	1.8
+++ dlls/ole32/filemoniker.c	2001/02/27 19:15:03
@@ -88,7 +88,7 @@
 
 
 /********************************************************************************/
-/* Virtual function table for the FileMonikerImpl class witch  include Ipersist,*/
+/* Virtual function table for the FileMonikerImpl class which  include IPersist,*/
 /* IPersistStream and IMoniker functions.                                       */
 static ICOM_VTABLE(IMoniker) VT_FileMonikerImpl =
 {
@@ -318,7 +318,7 @@
  *        FileMoniker_Save
  ******************************************************************************/
 HRESULT WINAPI FileMonikerImpl_Save(IMoniker* iface,
-                                    IStream* pStm,/* poniter to the stream where the object is to be saved */
+                                    IStream* pStm,/* pointer to the stream where the object is to be saved */
                                     BOOL fClearDirty)/* Specifies whether to clear the dirty flag */
 {
     /* this function saves data of this object. In the begining I thougth that I have just to write
Index: dlls/ole32/itemmoniker.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/itemmoniker.c,v
retrieving revision 1.6
diff -u -r1.6 itemmoniker.c
--- dlls/ole32/itemmoniker.c	2001/01/26 20:43:43	1.6
+++ dlls/ole32/itemmoniker.c	2001/02/27 19:15:03
@@ -87,7 +87,7 @@
 static HRESULT WINAPI ItemMonikerROTDataImpl_GetComparaisonData(IROTData* iface,BYTE* pbData,ULONG cbMax,ULONG* pcbData);
 
 /********************************************************************************/
-/* Virtual function table for the ItemMonikerImpl class witch  include Ipersist,*/
+/* Virtual function table for the ItemMonikerImpl class which  include IPersist,*/
 /* IPersistStream and IMoniker functions.                                       */
 static ICOM_VTABLE(IMoniker) VT_ItemMonikerImpl =
     {
@@ -342,9 +342,9 @@
 
     /* for more details see ItemMonikerImpl_Save coments */
     
-    pcbSize->s.LowPart =  sizeof(DWORD) + /* DWORD witch contains delimiter length */
+    pcbSize->s.LowPart =  sizeof(DWORD) + /* DWORD which contains delimiter length */
                         delimiterLength + /* item delimiter string */
-                        sizeof(DWORD) + /* DWORD witch contains item name length */
+                        sizeof(DWORD) + /* DWORD which contains item name length */
                         nameLength + /* item name string */
                         34; /* this constant was added ! because when I tested this function it usually */
                             /*  returns 34 bytes more than the number of bytes used by IMoniker::Save function */
Index: dlls/ole32/moniker.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/moniker.c,v
retrieving revision 1.12
diff -u -r1.12 moniker.c
--- dlls/ole32/moniker.c	2001/01/26 20:43:43	1.12
+++ dlls/ole32/moniker.c	2001/02/27 19:15:04
@@ -203,10 +203,10 @@
 
     /* the initial reference is set to "1" ! because if set to "0" it will be not practis when */
     /* the ROT refered many times  not in the same time (all the objects in the ROT will  */
-    /* be removed evry time the ROT is removed ) */
+    /* be removed every time the ROT is removed ) */
     runningObjectTableInstance->ref = 1;
 
-    /* allocate space memory for the table witch contains all the running objects */
+    /* allocate space memory for the table which contains all the running objects */
     runningObjectTableInstance->runObjTab = HeapAlloc(GetProcessHeap(), 0, sizeof(RunObject[BLOCK_TAB_SIZE]));
 
     if (runningObjectTableInstance->runObjTab == NULL)
@@ -250,7 +250,7 @@
 
     TRACE("(%p,%ld,%p,%p,%p)\n",This,grfFlags,punkObject,pmkObjectName,pdwRegister);
 
-    /* there's only tow types of register : strong and or weak registration (only one must be passed on parameter) */
+    /* there's only two types of register : strong and or weak registration (only one must be passed on parameter) */
     if ( ( (grfFlags & ROTFLAGS_REGISTRATIONKEEPSALIVE) || !(grfFlags & ROTFLAGS_ALLOWANYCLIENT)) &&
          (!(grfFlags & ROTFLAGS_REGISTRATIONKEEPSALIVE) ||  (grfFlags & ROTFLAGS_ALLOWANYCLIENT)) &&
          (grfFlags) )
Index: dlls/ole32/storage32.c
===================================================================
RCS file: /home/wine/wine/dlls/ole32/storage32.c,v
retrieving revision 1.18
diff -u -r1.18 storage32.c
--- dlls/ole32/storage32.c	2000/11/28 22:40:57	1.18
+++ dlls/ole32/storage32.c	2001/02/27 19:15:07
@@ -6403,7 +6403,7 @@
         strcpy(IStorageCompObj.strOleTypeName, strOleTypeName);
 
         /* copy the OleTypeName to the compobj struct */
-        /* Note: in the test made, these where Identical      */
+        /* Note: in the test made, these were Identical      */
         IStorageCompObj.dwProgIDNameLength = strlen(strOleTypeName)+1;
         strcpy(IStorageCompObj.strProgIDName, strOleTypeName);
 
Index: dlls/oleaut32/typelib.c
===================================================================
RCS file: /home/wine/wine/dlls/oleaut32/typelib.c,v
retrieving revision 1.33
diff -u -r1.33 typelib.c
--- dlls/oleaut32/typelib.c	2001/01/06 01:29:18	1.33
+++ dlls/oleaut32/typelib.c	2001/02/27 19:15:09
@@ -1368,7 +1368,7 @@
     ptiRet = (ITypeInfoImpl*) ITypeInfo_Constructor();
     TLB_Read(&tiBase, sizeof(tiBase) ,pcx ,
         pcx->pTblDir->pTypeInfoTab.offset+count*sizeof(tiBase));
-/* this where we are coming from */
+/* this is where we are coming from */
     ptiRet->pTypeLib = pLibInfo;
     ptiRet->index=count;
 /* fill in the typeattr fields */
Index: dlls/oleaut32/variant.c
===================================================================
RCS file: /home/wine/wine/dlls/oleaut32/variant.c,v
retrieving revision 1.12
diff -u -r1.12 variant.c
--- dlls/oleaut32/variant.c	2001/01/22 19:23:54	1.12
+++ dlls/oleaut32/variant.c	2001/02/27 19:15:11
@@ -342,12 +342,12 @@
 
 		memset(pTm,0,sizeof(*pTm));
 	
-		/* Because of the nature of DATE format witch
+		/* Because of the nature of DATE format which
 		 * associates 2.0 to January 1, 1900. We will
 		 * remove 1.0 from the whole part of the DATE
 		 * so that in the following code 1.0
 		 * will correspond to January 1, 1900.
-		 * This simplyfies the processing of the DATE value.
+		 * This simplifies the processing of the DATE value.
 		 */
 		dateIn -= 1.0;
 
@@ -359,7 +359,7 @@
 			int nDay = 0;
 			int leapYear = 0;
 			double yearsSince1900 = 0;
-			/* Start at 1900, this where the DATE time 0.0 starts.
+			/* Start at 1900, this is where the DATE time 0.0 starts.
 			 */
 			pTm->tm_year = 1900;
 			/* find in what year the day in the "wholePart" falls into.
@@ -375,12 +375,12 @@
 				wholePart++;
 			}
 
-			/* find what day of that year does the "wholePart" corresponds to.
+			/* find what day of that year the "wholePart" corresponds to.
 			 * Note: nDay is in [1-366] format
 			 */
 			nDay = (int) ( wholePart - floor( yearsSince1900 * DAYS_IN_ONE_YEAR ) );
 			/* Set the tm_yday value.
-			 * Note: The day is must be converted from [1-366] to [0-365]
+			 * Note: The day must be converted from [1-366] to [0-365]
 			 */
 			/*pTm->tm_yday = nDay - 1;*/
 			/* find which mount this day corresponds to.
Index: dlls/shell32/shlfolder.c
===================================================================
RCS file: /home/wine/wine/dlls/shell32/shlfolder.c,v
retrieving revision 1.55
diff -u -r1.55 shlfolder.c
--- dlls/shell32/shlfolder.c	2001/02/21 04:01:20	1.55
+++ dlls/shell32/shlfolder.c	2001/02/27 19:15:12
@@ -338,7 +338,7 @@
 }
 
 /**************************************************************************
-*	we need a seperate IUnknown to handle aggregation
+*	we need a separate IUnknown to handle aggregation
 *	(inner IUnknown)
 */
 static HRESULT WINAPI IUnknown_fnQueryInterface(
Index: dlls/user/exticon.c
===================================================================
RCS file: /home/wine/wine/dlls/user/exticon.c,v
retrieving revision 1.12
diff -u -r1.12 exticon.c
--- dlls/user/exticon.c	2001/01/25 22:22:21	1.12
+++ dlls/user/exticon.c	2001/02/27 19:15:13
@@ -374,7 +374,7 @@
 	      );
 	      goto end;
 	    }
-	    /* FIXME: doesn't work when the resources are not in a seperate section */
+	    /* FIXME: doesn't work when the resources are not in a separate section */
 	    if (pe_sections[i].VirtualAddress == pe_header->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_RESOURCE].VirtualAddress) 
 	    {
 	      rootresdir = (PIMAGE_RESOURCE_DIRECTORY)(peimage+pe_sections[i].PointerToRawData);
Index: dlls/winspool/info.c
===================================================================
RCS file: /home/wine/wine/dlls/winspool/info.c,v
retrieving revision 1.33
diff -u -r1.33 info.c
--- dlls/winspool/info.c	2001/02/21 04:00:40	1.33
+++ dlls/winspool/info.c	2001/02/27 19:15:14
@@ -1707,9 +1707,9 @@
  *      lpbPrinters buffer.
  *
  *    If level set to 3 or 6+:
- *	    returns zero (faillure!)
+ *	    returns zero (failure!)
  *      
- *    Returns nonzero (TRUE) on succes, or zero on faillure, use GetLastError
+ *    Returns nonzero (TRUE) on success, or zero on failure, use GetLastError
  *    for information.
  *
  * BUGS:
@@ -2202,7 +2202,7 @@
  *     Displays a dialog to set the properties of the printer.
  *
  * RETURNS 
- *     nonzero on succes or zero on faillure
+ *     nonzero on success or zero on failure
  *
  * BUGS
  *	   implemented as stub only
@@ -2247,11 +2247,11 @@
 /*****************************************************************************
  *          WINSPOOL_EnumPrinterDrivers [internal]
  *
- *    Delivers information about all installed printer drivers installed on
+ *    Delivers information about all printer drivers installed on the 
  *    localhost or a given server
  *
  * RETURNS
- *    nonzero on succes or zero on failure, if the buffer for the returned
+ *    nonzero on success or zero on failure. If the buffer for the returned
  *    information is too small the function will return an error
  *
  * BUGS
Index: graphics/x11drv/graphics.c
===================================================================
RCS file: /home/wine/wine/graphics/x11drv/graphics.c,v
retrieving revision 1.37
diff -u -r1.37 graphics.c
--- graphics/x11drv/graphics.c	2001/02/16 19:38:50	1.37
+++ graphics/x11drv/graphics.c	2001/02/27 19:15:15
@@ -429,12 +429,12 @@
             points[1].y = (int) floor(dc->DCOrgY + (top+bottom)/2.0 -
                     sin(end_angle) * (bottom-top-width*2+2) / 2. + 0.5);
                     
-            /* OK this stuff is optimized for Xfree86 
-             * which is probably the most used server by
+            /* OK, this stuff is optimized for Xfree86 
+             * which is probably the server most used by
              * wine users. Other X servers will not 
              * display correctly. (eXceed for instance)
-             * so if you feel you must change make sure that
-             * you either use Xfree86 or seperate your changes 
+             * so if you feel you must make changes, make sure that
+             * you either use Xfree86 or separate your changes 
              * from these (compile switch or whatever)
              */
             if (lines == 2) {
Index: include/ddraw.h
===================================================================
RCS file: /home/wine/wine/include/ddraw.h,v
retrieving revision 1.34
diff -u -r1.34 ddraw.h
--- include/ddraw.h	2001/01/04 22:44:57	1.34
+++ include/ddraw.h	2001/02/27 19:15:17
@@ -283,7 +283,7 @@
 #define DDSCAPS_RESERVED2		0x00800000
 /* memory allocation delayed until Load() */
 #define DDSCAPS_ALLOCONLOAD		0x04000000
-/* Indicates that the surface will recieve data from a video port */
+/* Indicates that the surface will receive data from a video port */
 #define DDSCAPS_VIDEOPORT		0x08000000
 /* surface is in local videomemory */
 #define DDSCAPS_LOCALVIDMEM		0x10000000
Index: objects/metafile.c
===================================================================
RCS file: /home/wine/wine/objects/metafile.c,v
retrieving revision 1.33
diff -u -r1.33 metafile.c
--- objects/metafile.c	2001/02/14 23:11:19	1.33
+++ objects/metafile.c	2001/02/27 19:15:30
@@ -1355,7 +1355,7 @@
  *	 2		Looks like a handle? - not constant
  *	 3		0 or 1 ??
  *	 4		Total number of bytes
- *	 5		No. of seperate bands = n [see below]
+ *	 5		No. of separate bands = n [see below]
  *	 6		Largest number of x co-ords in a band
  *	 7-10		Bounding box x1 y1 x2 y2
  *	 11-...		n bands
Index: programs/notepad/main.c
===================================================================
RCS file: /home/wine/wine/programs/notepad/main.c,v
retrieving revision 1.14
diff -u -r1.14 main.c
--- programs/notepad/main.c	2001/01/02 20:44:02	1.14
+++ programs/notepad/main.c	2001/02/27 19:15:30
@@ -16,7 +16,7 @@
  *  - free unused memory
  *  - solve Open problems
  *  - smoother scrolling
- *  - seperate view code and document code
+ *  - separate view code and document code
  *
  * This program is intended as a testbed for winelib as much as
  * a useful application.
Index: win32/device.c
===================================================================
RCS file: /home/wine/wine/win32/device.c,v
retrieving revision 1.47
diff -u -r1.47 device.c
--- win32/device.c	2001/02/27 02:09:19	1.47
+++ win32/device.c	2001/02/27 19:15:37
@@ -692,7 +694,7 @@
 	  ERR("Can't reserve ring 1 memory\n");
 	  return -1;
 	}
-	/* FIXME: This has to be handled seperatly, when we have seperate
+	/* FIXME: This has to be handled separately, when we have separate
 	   address-spaces */
 	if ( page == PR_PRIVATE || page == PR_SHARED ) page = 0;
 	/* FIXME: Handle flags in some way */
Index: windows/winpos.c
===================================================================
RCS file: /home/wine/wine/windows/winpos.c,v
retrieving revision 1.90
diff -u -r1.90 winpos.c
--- windows/winpos.c	2001/02/23 01:13:42	1.90
+++ windows/winpos.c	2001/02/27 19:15:41
@@ -2954,7 +2954,7 @@
  
 	    /*  Use PAINT_RedrawWindow to explicitly force an invalidation of the window,
 		its parent and sibling and so on, and then erase the parent window 
-		back ground if the parent is either a top-level window or its parent's parent  
+		background if the parent is either a top-level window or its parent's parent  
 		is top-level window. Rely on the system to repaint other affected 
 		windows later on.  */ 
 	    if( uFlags & SWP_EX_PAINTSELF )
Index: dlls/user/ddeml.c
===================================================================
RCS file: /home/wine/wine/dlls/user/ddeml.c,v
retrieving revision 1.6
diff -u -r1.6 ddeml.c
--- dlls/user/ddeml.c	2001/01/25 22:22:21	1.6
+++ dlls/user/ddeml.c	2001/02/27 19:25:32
@@ -1688,7 +1688,7 @@
 }
 
 /******************************************************************************
- * DdeGetData [USER32.@]  Copies data from DDE object ot local buffer
+ * DdeGetData [USER32.@]  Copies data from DDE object to local buffer
  *
  * RETURNS
  *    Size of memory object associated with handle


More information about the wine-patches mailing list