Spelling fixes.

This commit is contained in:
Andreas Mohr 2001-06-22 23:21:47 +00:00 committed by Alexandre Julliard
parent 5fc46a2569
commit 99f2f396b5
3 changed files with 11 additions and 11 deletions

View File

@ -487,7 +487,7 @@ FreeMRUListA (HANDLE hMRUList)
/************************************************************************** /**************************************************************************
* AddMRUData [COMCTL32.167] * AddMRUData [COMCTL32.167]
* *
* Add item to MRU binary list. If item already exists in list them it is * Add item to MRU binary list. If item already exists in list then it is
* simply moved up to the top of the list and not added again. If list is * simply moved up to the top of the list and not added again. If list is
* full then the least recently used item is removed to make room. * full then the least recently used item is removed to make room.
* *
@ -541,7 +541,7 @@ AddMRUStringA(HANDLE hList, LPCSTR lpszString)
* nItemPos [I] item position to remove 0 -> MRU * nItemPos [I] item position to remove 0 -> MRU
* *
* RETURNS * RETURNS
* TRUE is successful, FALSE if nItemPos is out of range. * TRUE if successful, FALSE if nItemPos is out of range.
*/ */
BOOL WINAPI BOOL WINAPI
DelMRUString(HANDLE hList, INT nItemPos) DelMRUString(HANDLE hList, INT nItemPos)
@ -1311,7 +1311,7 @@ DPA_Destroy (const HDPA hdpa)
* *
* PARAMS * PARAMS
* hdpa [I] handle (pointer) to the existing (source) pointer array * hdpa [I] handle (pointer) to the existing (source) pointer array
* nGrow [I] number of items, the array grows, when it's too small * nGrow [I] number of items by which the array grows when it's too small
* *
* RETURNS * RETURNS
* Success: TRUE * Success: TRUE

View File

@ -583,7 +583,7 @@ static int _w95_dump_dkv(_w95dkh *dkh,int nrLS,int nrMS,FILE *f)
/* first value block */ /* first value block */
dkv = (_w95dkv*)((char*)dkh+dkh->keynamelen+0x14); dkv = (_w95dkv*)((char*)dkh+dkh->keynamelen+0x14);
/* loop trought the values */ /* loop through the values */
for (i=0; i< dkh->values; i++) { for (i=0; i< dkh->values; i++) {
struct key_value value; struct key_value value;
WCHAR *pdata; WCHAR *pdata;
@ -1378,7 +1378,7 @@ error1:
return ret; return ret;
} }
/* convert native native registry to wine format and load it via server call [Internal] */ /* convert native registry to wine format and load it via server call [Internal] */
static void _convert_and_load_native_registry(LPCSTR fn,HKEY hkey,int reg_type,int level) static void _convert_and_load_native_registry(LPCSTR fn,HKEY hkey,int reg_type,int level)
{ {
LPSTR tmp = NULL; LPSTR tmp = NULL;
@ -1401,10 +1401,10 @@ static void _convert_and_load_native_registry(LPCSTR fn,HKEY hkey,int reg_type,i
if (tmp != NULL) { if (tmp != NULL) {
load_wine_registry(hkey,tmp); load_wine_registry(hkey,tmp);
TRACE("File %s successfuly converted to %s and loaded to registry.\n",fn,tmp); TRACE("File %s successfully converted to %s and loaded to registry.\n",fn,tmp);
unlink(tmp); unlink(tmp);
} }
else WARN("Unable to convert %s (not exist?)\n",fn); else WARN("Unable to convert %s (doesn't exist?)\n",fn);
free(tmp); free(tmp);
} }