mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Fixed spelling/typos in comments.
This commit is contained in:
parent
49fc317f23
commit
3d0589ae7d
@ -174,7 +174,7 @@ static LRESULT COMBO_NCDestroy( LPHEADCOMBO lphc )
|
||||
* This method will calculate the height of the text area of the
|
||||
* combobox.
|
||||
* The height of the text area is set in two ways.
|
||||
* It can be set explicitely through a combobox message or through a
|
||||
* It can be set explicitly through a combobox message or through a
|
||||
* WM_MEASUREITEM callback.
|
||||
* If this is not the case, the height is set to 13 dialog units.
|
||||
* This height was determined through experimentation.
|
||||
|
@ -161,7 +161,7 @@ static LONG JSTCK_GetDevCaps(DWORD dwDevID, LPJOYCAPSA lpCaps, DWORD dwSize)
|
||||
lpCaps->wZmax = (nrOfAxes >= 3) ? 0xFFFF : 0;
|
||||
lpCaps->wNumButtons = nrOfButtons;
|
||||
if (dwSize == sizeof(JOYCAPSA)) {
|
||||
/* since we supose ntOfAxes <= 6 in the following code, do it explicitely */
|
||||
/* since we suppose ntOfAxes <= 6 in the following code, do it explicitly */
|
||||
if (nrOfAxes > 6) nrOfAxes = 6;
|
||||
/* complete 95 structure */
|
||||
lpCaps->wRmin = 0;
|
||||
|
@ -530,7 +530,7 @@ static FOURCC MMIO_ParseExt(LPCSTR szFileName)
|
||||
WARN("Extension length > 4\n");
|
||||
lstrcpynA(ext,extStart + 1,min(extEnd-extStart,5));
|
||||
TRACE("Got extension: %s\n", debugstr_a(ext));
|
||||
/* FOURCC codes identifying file-extentions must be uppercase */
|
||||
/* FOURCC codes identifying file-extensions must be uppercase */
|
||||
ret = mmioStringToFOURCCA(ext, MMIO_TOUPPER);
|
||||
}
|
||||
}
|
||||
|
@ -409,7 +409,7 @@ BOOL MODULE_InitLoadOrder(void)
|
||||
);
|
||||
}
|
||||
|
||||
/* Read the explicitely defined orders for specific modules as an entire section */
|
||||
/* Read the explicitly defined orders for specific modules as an entire section */
|
||||
idx = 0;
|
||||
while (PROFILE_EnumWineIniString( "DllOverrides", idx++, key, sizeof(key),
|
||||
buffer, sizeof(buffer)))
|
||||
@ -426,7 +426,7 @@ BOOL MODULE_InitLoadOrder(void)
|
||||
" - 'name' is the name of any dll without extension\n"
|
||||
" - the order of loading (native, so and builtin) can be abbreviated\n"
|
||||
" with the first letter\n"
|
||||
" - different loadorders for different dlls can be specified by seperating the\n"
|
||||
" - different loadorders for different dlls can be specified by separating the\n"
|
||||
" command line entries with a '+'\n"
|
||||
" Example:\n"
|
||||
" -dll comdlg32,commdlg=n+shell,shell32=b\n"
|
||||
|
Loading…
Reference in New Issue
Block a user