Commit 4188fbcb authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard

Misc typos in comments.

parent 4684ab1c
/*
* 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
*
......
......@@ -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;
......
......@@ -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)
......
......@@ -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)))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment