Misc typos in comments.

This commit is contained in:
François Gouget 2001-02-14 21:43:06 +00:00 committed by Alexandre Julliard
parent 4684ab1c12
commit 4188fbcb9b
4 changed files with 9 additions and 9 deletions

View file

@ -1,9 +1,9 @@
/*
* RichEdit32 functions
*
* This module is a simple wrap-arround the edit controls.
* At the point, it is good only for application who use the RICHEDIT control to
* display RTF text.
* This module is a simple wrapper for the edit controls.
* At the point, it is good only for application who use the RICHEDIT
* control to display RTF text.
*
* Copyright 2000 by Jean-Claude Batista
*

View file

@ -1219,7 +1219,7 @@ BOOL WINAPI HeapFree(
/* Validate the parameters */
if (!ptr) return TRUE; /* freeing a NULL ptr is doesn't indicate an error in Win2k */
if (!ptr) return TRUE; /* freeing a NULL ptr isn't an error in Win2k */
if (flags & HEAP_WINE_SEGPTR) heapPtr = segptrHeap;
if (!heapPtr) return FALSE;

View file

@ -619,7 +619,7 @@ static HRESULT openKey( LPSTR stdInput)
}
/******************************************************************************
* This function is a wrapper arround the setValue function. It prepares the
* This function is a wrapper for the setValue function. It prepares the
* land and clean the area once completed.
*/
static void processSetValue(LPSTR cmdline)
@ -675,7 +675,7 @@ static void processSetValue(LPSTR cmdline)
}
/******************************************************************************
* This function is a wrapper arround the queryValue function. It prepares the
* This function is a wrapper for the queryValue function. It prepares the
* land and clean the area once completed.
*/
static void processQueryValue(LPSTR cmdline)

View file

@ -62,7 +62,7 @@ static HDC screen_dc;
*
* FIXME: This should not be allocated on the system heap, but on a
* subsystem-global heap (i.e. one for all Win16 processes,
* and one each for every Win32 process).
* and one for each Win32 process).
*/
typedef struct tagICONCACHE
{
@ -843,7 +843,7 @@ HGLOBAL CURSORICON_ExtCopy(HGLOBAL Handle, UINT nType,
{
ICONCACHE* pIconCache = CURSORICON_FindCache(Handle);
/* Not Found in Cache, then do a strait copy
/* Not Found in Cache, then do a straight copy
*/
if(pIconCache == NULL)
{
@ -876,7 +876,7 @@ HGLOBAL CURSORICON_ExtCopy(HGLOBAL Handle, UINT nType,
SM_CXICON : SM_CXCURSOR);
}
/* Retreive the CURSORICONDIRENTRY
/* Retrieve the CURSORICONDIRENTRY
*/
if (!(hMem = LoadResource( pIconCache->hModule ,
pIconCache->hGroupRsrc)))