Assorted spelling fixes.
This commit is contained in:
parent
cc6b542a8e
commit
9d589acc26
|
@ -336,7 +336,7 @@ MenuHelp (UINT uMsg, WPARAM wParam, LPARAM lParam, HMENU hMainMenu,
|
||||||
* Handle to the window that contains the menu and controls.
|
* Handle to the window that contains the menu and controls.
|
||||||
*
|
*
|
||||||
* uFlags
|
* uFlags
|
||||||
* Identifier of the menu item to receive or loose a check mark.
|
* Identifier of the menu item to receive or lose a check mark.
|
||||||
*
|
*
|
||||||
* lpInfo
|
* lpInfo
|
||||||
* The array of integers contains pairs of values. BOTH values of
|
* The array of integers contains pairs of values. BOTH values of
|
||||||
|
|
|
@ -3195,7 +3195,7 @@ TREEVIEW_Expand(TREEVIEW_INFO *infoPtr, TREEVIEW_ITEM *wineItem,
|
||||||
TREEVIEW_UpdateScrollBars(infoPtr);
|
TREEVIEW_UpdateScrollBars(infoPtr);
|
||||||
|
|
||||||
/* Scroll up so that as many children as possible are visible.
|
/* Scroll up so that as many children as possible are visible.
|
||||||
* This looses when expanding causes an HScroll bar to appear, but we
|
* This fails when expanding causes an HScroll bar to appear, but we
|
||||||
* don't know that yet, so the last item is obscured. */
|
* don't know that yet, so the last item is obscured. */
|
||||||
if (wineItem->firstChild != NULL)
|
if (wineItem->firstChild != NULL)
|
||||||
{
|
{
|
||||||
|
|
|
@ -432,7 +432,7 @@ static LRESULT CALLBACK dinput_mouse_hook( int code, WPARAM wparam, LPARAM lpara
|
||||||
/* Only allow mouse events every 10 ms.
|
/* Only allow mouse events every 10 ms.
|
||||||
* This is to allow the cursor to start acceleration before
|
* This is to allow the cursor to start acceleration before
|
||||||
* the warps happen. But if it involves a mouse button event we
|
* the warps happen. But if it involves a mouse button event we
|
||||||
* allow it since we don't want to loose the clicks.
|
* allow it since we don't want to lose the clicks.
|
||||||
*/
|
*/
|
||||||
if (((GetCurrentTime() - last_event) < 10)
|
if (((GetCurrentTime() - last_event) < 10)
|
||||||
&& wparam == WM_MOUSEMOVE)
|
&& wparam == WM_MOUSEMOVE)
|
||||||
|
|
|
@ -272,7 +272,7 @@ BOOL OSS_MidiInit(void)
|
||||||
goto wrapup;
|
goto wrapup;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME: the two restrictions below could be loosen in some cases */
|
/* FIXME: the two restrictions below could be loosened in some cases */
|
||||||
if (numsynthdevs + nummididevs > MAX_MIDIOUTDRV) {
|
if (numsynthdevs + nummididevs > MAX_MIDIOUTDRV) {
|
||||||
ERR("MAX_MIDIOUTDRV was not enough for the number of devices. "
|
ERR("MAX_MIDIOUTDRV was not enough for the number of devices. "
|
||||||
"Some MIDI devices will not be available.\n");
|
"Some MIDI devices will not be available.\n");
|
||||||
|
|
Loading…
Reference in New Issue