Spelling typos

Francois Gouget fgouget at free.fr
Thu May 17 21:10:57 CDT 2001


Changelog:

 * dlls/comctl32/monthcal.c,
   dlls/dplayx/dplaysp.c,
   dlls/oleaut32/variant.c,
   documentation/winelib-porting.sgml,
   windows/defwnd.c,
   windows/x11drv/clipboard.c

   Spelling typos...


--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
      Any sufficiently advanced bug is indistinguishable from a feature.
                            -- from some indian guy
-------------- next part --------------
Index: dlls/comctl32/monthcal.c
===================================================================
RCS file: /home/cvs/wine/wine/dlls/comctl32/monthcal.c,v
retrieving revision 1.30
diff -u -r1.30 monthcal.c
--- dlls/comctl32/monthcal.c	2001/01/26 20:43:41	1.30
+++ dlls/comctl32/monthcal.c	2001/05/18 00:24:13
@@ -107,7 +107,7 @@
 int MONTHCAL_MonthLength(int month, int year)
 {
 const int mdays[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 0};
-  /*Wrap around, this eases handleing*/
+  /*Wrap around, this eases handling*/
   if(month == 0)
     month = 12;
   if(month == 13)
Index: dlls/dplayx/dplaysp.c
===================================================================
RCS file: /home/cvs/wine/wine/dlls/dplayx/dplaysp.c,v
retrieving revision 1.7
diff -u -r1.7 dplaysp.c
--- dlls/dplayx/dplaysp.c	2001/04/12 21:10:54	1.7
+++ dlls/dplayx/dplaysp.c	2001/05/18 00:24:15
@@ -731,7 +731,7 @@
   {
     ERR( "Unable to perform action for msg type 0x%08lx\n", lpMsg->dwType );
   }
-  /* If a receieve event was registered for this player, invoke it */
+  /* If a receive event was registered for this player, invoke it */
   if( hReceiveEvent )
   {
     SetEvent( hReceiveEvent );
Index: dlls/oleaut32/variant.c
===================================================================
RCS file: /home/cvs/wine/wine/dlls/oleaut32/variant.c,v
retrieving revision 1.13
diff -u -r1.13 variant.c
--- dlls/oleaut32/variant.c	2001/02/28 05:31:03	1.13
+++ dlls/oleaut32/variant.c	2001/05/18 00:24:17
@@ -3245,7 +3258,7 @@
  *		VarBstrFromDate		[OLEAUT32.114]
  *
  * The date is implemented using an 8 byte floating-point number.
- * Days are represented by whole numbers increments starting with 0.00 has
+ * Days are represented by whole numbers increments starting with 0.00 as
  * being December 30 1899, midnight.
  * The hours are expressed as the fractional part of the number.
  * December 30 1899 at midnight = 0.00
Index: documentation/winelib-porting.sgml
===================================================================
RCS file: /home/cvs/wine/wine/documentation/winelib-porting.sgml,v
retrieving revision 1.1
diff -u -r1.1 winelib-porting.sgml
--- documentation/winelib-porting.sgml	2001/01/24 19:36:24	1.1
+++ documentation/winelib-porting.sgml	2001/05/18 00:24:18
@@ -99,7 +99,7 @@
         <listitem>
           <para>
             Use the compiler default, but don't call any Win32 unicode
-            functions without converting the strings first!
+            function without converting the strings first!
           </para>
         </listitem>
       </orderedlist>
Index: windows/defwnd.c
===================================================================
RCS file: /home/cvs/wine/wine/windows/defwnd.c,v
retrieving revision 1.54
diff -u -r1.54 defwnd.c
--- windows/defwnd.c	2001/05/09 17:31:36	1.54
+++ windows/defwnd.c	2001/05/18 00:24:23
@@ -860,7 +860,7 @@
  *     Return value is dependent upon the message.
 */
 LRESULT WINAPI DefWindowProcW( 
-    HWND hwnd,      /* [in] window procedure recieving message */
+    HWND hwnd,      /* [in] window procedure receiving message */
     UINT msg,       /* [in] message identifier */
     WPARAM wParam,  /* [in] first message parameter */
     LPARAM lParam )   /* [in] second message parameter */
Index: windows/x11drv/clipboard.c
===================================================================
RCS file: /home/cvs/wine/wine/windows/x11drv/clipboard.c,v
retrieving revision 1.31
diff -u -r1.31 clipboard.c
--- windows/x11drv/clipboard.c	2001/05/16 19:52:32	1.31
+++ windows/x11drv/clipboard.c	2001/05/18 00:24:25
@@ -15,9 +15,9 @@
  *    1. PRIMARY(XA_PRIMARY)
  *    2. CLIPBOARD
  *
- *    In our implementation, the CLIPBOARD selection takes precedence over PRIMARY.
+ *    In our implementation, the CLIPBOARD selection takes precedence over PRIMARY,
  *    i.e. if a CLIPBOARD selection is available, it is used instead of PRIMARY.
- *    When Wine taks ownership of the clipboard, it takes ownership of BOTH selections.
+ *    When Wine takes ownership of the clipboard, it takes ownership of BOTH selections.
  *    While giving up selection ownership, if the CLIPBOARD selection is lost,
  *    it will lose both PRIMARY and CLIPBOARD and empty the clipboard.
  *    However if only PRIMARY is lost, it will continue to hold the CLIPBOARD selection
@@ -26,7 +26,7 @@
  *      Every format exposed via a windows clipboard format is also exposed through
  *    a corresponding X selection target. A selection target atom is synthesized
  *    whenever a new Windows clipboard format is registered via RegisterClipboardFormat,
- *    or when a built in format is used for the first time.
+ *    or when a built-in format is used for the first time.
  *    Windows native format are exposed by prefixing the format name with "<WCF>"
  *    This allows us to uniquely identify windows native formats exposed by other
  *    running WINE apps.
@@ -34,7 +34,7 @@
  *      In order to allow external applications to query WINE for supported formats,
  *    we respond to the "TARGETS" selection target. (See EVENT_SelectionRequest
  *    for implementation) We use the same mechanism to query external clients for
- *    availability of a particular format, by cacheing the list of available targets
+ *    availability of a particular format, by caching the list of available targets
  *    by using the clipboard cache's "delayed render" mechanism. If a selection client
  *    does not support the "TARGETS" selection target, we actually attempt to retrieve
  *    the format requested as a fallback mechanism.
@@ -912,7 +912,7 @@
                          || (ClipboardSelectionOwner != ownerClipboard) )
     {
         /*
-         * First try cacheing the CLIPBOARD selection.
+         * First try caching the CLIPBOARD selection.
          * If unavailable try PRIMARY.
          */
         if ( X11DRV_CLIPBOARD_CacheDataFormats(xaClipboard) == 0 )


More information about the wine-patches mailing list