mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:13:56 +00:00
Misc typos in comments.
This commit is contained in:
parent
4684ab1c12
commit
4188fbcb9b
4 changed files with 9 additions and 9 deletions
|
@ -1,9 +1,9 @@
|
||||||
/*
|
/*
|
||||||
* RichEdit32 functions
|
* RichEdit32 functions
|
||||||
*
|
*
|
||||||
* This module is a simple wrap-arround the edit controls.
|
* 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
|
* At the point, it is good only for application who use the RICHEDIT
|
||||||
* display RTF text.
|
* control to display RTF text.
|
||||||
*
|
*
|
||||||
* Copyright 2000 by Jean-Claude Batista
|
* Copyright 2000 by Jean-Claude Batista
|
||||||
*
|
*
|
||||||
|
|
|
@ -1219,7 +1219,7 @@ BOOL WINAPI HeapFree(
|
||||||
|
|
||||||
/* Validate the parameters */
|
/* 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 (flags & HEAP_WINE_SEGPTR) heapPtr = segptrHeap;
|
||||||
if (!heapPtr) return FALSE;
|
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.
|
* land and clean the area once completed.
|
||||||
*/
|
*/
|
||||||
static void processSetValue(LPSTR cmdline)
|
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.
|
* land and clean the area once completed.
|
||||||
*/
|
*/
|
||||||
static void processQueryValue(LPSTR cmdline)
|
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
|
* FIXME: This should not be allocated on the system heap, but on a
|
||||||
* subsystem-global heap (i.e. one for all Win16 processes,
|
* 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
|
typedef struct tagICONCACHE
|
||||||
{
|
{
|
||||||
|
@ -843,7 +843,7 @@ HGLOBAL CURSORICON_ExtCopy(HGLOBAL Handle, UINT nType,
|
||||||
{
|
{
|
||||||
ICONCACHE* pIconCache = CURSORICON_FindCache(Handle);
|
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)
|
if(pIconCache == NULL)
|
||||||
{
|
{
|
||||||
|
@ -876,7 +876,7 @@ HGLOBAL CURSORICON_ExtCopy(HGLOBAL Handle, UINT nType,
|
||||||
SM_CXICON : SM_CXCURSOR);
|
SM_CXICON : SM_CXCURSOR);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Retreive the CURSORICONDIRENTRY
|
/* Retrieve the CURSORICONDIRENTRY
|
||||||
*/
|
*/
|
||||||
if (!(hMem = LoadResource( pIconCache->hModule ,
|
if (!(hMem = LoadResource( pIconCache->hModule ,
|
||||||
pIconCache->hGroupRsrc)))
|
pIconCache->hGroupRsrc)))
|
||||||
|
|
Loading…
Reference in a new issue