Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2009-10-08 11:23:19 +02:00 committed by Alexandre Julliard
parent fd90aab3a4
commit fe935e8d50
4 changed files with 5 additions and 5 deletions

View file

@ -331,7 +331,7 @@ static BOOL MONTHCAL_IsSelRangeValid(const MONTHCAL_INFO *infoPtr,
}
/* Used in MCM_SETRANGE/MCM_SETSELRANGE to determine resulting time part.
Milliseconds are intentionaly not validated. */
Milliseconds are intentionally not validated. */
static BOOL MONTHCAL_ValidateTime(const SYSTEMTIME *time)
{
if((time->wHour > 24) || (time->wMinute > 59) || (time->wSecond > 59))

View file

@ -156,7 +156,7 @@ static HRESULT ActiveXObject_value(script_ctx_t *ctx, vdisp_t *jsthis, WORD flag
}
if(arg_cnt(dp) != 1) {
FIXME("unsuported arg_cnt %d\n", arg_cnt(dp));
FIXME("unsupported arg_cnt %d\n", arg_cnt(dp));
return E_NOTIMPL;
}

View file

@ -2903,7 +2903,7 @@ static void test_lastusedsource(void)
r = MsiInstallProductA("msifile0.msi", "REMOVE=ALL");
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
/* seperate cabinet file */
/* separate cabinet file */
size = MAX_PATH;
lstrcpyA(value, "aaa");

View file

@ -1391,8 +1391,8 @@ static DWORD WINAPI hooked_WaitForInputIdle(HANDLE process, DWORD timeout)
* a problem for us because ShellExecute will assume that an app is ready to
* receive DDE messages after it has called WaitForInputIdle() on that app.
* To work around that we install our own version of WaitForInputIdle() that
* will wait for the child to explicitly tell it it's ready. We do that by
* changing the entry for WaitForInputIdle() in the shell32 import address
* will wait for the child to explicitly tell us that it is ready. We do that
* by changing the entry for WaitForInputIdle() in the shell32 import address
* table.
*/
static void hook_WaitForInputIdle(void *new_func)