Spelling typos.

oldstable
Francois Gouget 2001-05-18 21:01:38 +00:00 committed by Alexandre Julliard
parent b30d59dcdf
commit cd8d181a0b
6 changed files with 10 additions and 10 deletions

View File

@ -107,7 +107,7 @@ static const int DayOfWeekTable[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
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)

View File

@ -731,7 +731,7 @@ static HRESULT WINAPI IDirectPlaySPImpl_HandleMessage
{
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 );

View File

@ -3245,7 +3245,7 @@ HRESULT WINAPI VarBstrFromCy(CY cyIn, LCID lcid, ULONG dwFlags, BSTR *pbstrOut)
* 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

View File

@ -99,7 +99,7 @@ printf("Processor architecture=%d\n",si ANONS .wProcessorArchitecture);
<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>

View File

@ -860,7 +860,7 @@ LRESULT WINAPI DefWindowProcA( HWND hwnd, UINT msg, WPARAM wParam,
* 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 */

View File

@ -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 @@ BOOL X11DRV_IsClipboardFormatAvailable(UINT wFormat)
|| (ClipboardSelectionOwner != ownerClipboard) )
{
/*
* First try cacheing the CLIPBOARD selection.
* First try caching the CLIPBOARD selection.
* If unavailable try PRIMARY.
*/
if ( X11DRV_CLIPBOARD_CacheDataFormats(xaClipboard) == 0 )