Weekly spelling fixes.
This commit is contained in:
parent
3871395140
commit
f405629e8e
|
@ -5483,7 +5483,7 @@ TOOLBAR_SetRedraw (HWND hwnd, WPARAM wParam, LPARAM lParam)
|
|||
* According to testing V4.71 of COMCTL32 returns the
|
||||
* *previous* status of the redraw flag (either 0 or 1)
|
||||
* instead of the MSDN documented value of 0 if handled.
|
||||
* (For laughs see the "consistancy" with same function
|
||||
* (For laughs see the "consistency" with same function
|
||||
* in rebar.)
|
||||
*
|
||||
*****************************************************/
|
||||
|
|
|
@ -1272,7 +1272,7 @@ void test_FoldStringW(void)
|
|||
0x2789, /* No inverted Patterned circled */
|
||||
'\0' /* Terminator */
|
||||
};
|
||||
/* Compatability conversion results */
|
||||
/* Compatibility conversion results */
|
||||
static const WCHAR compat_F900_FA2F[256+48] =
|
||||
{
|
||||
0x8c48, 0x66f4, 0x8eca, 0x8cc8, 0x6ed1, 0x4e32, 0x53e5, 0x9f9c,
|
||||
|
|
|
@ -4645,7 +4645,7 @@ HRESULT WINAPI VarParseNumFromStr(OLECHAR *lpszStr, LCID lcid, ULONG dwFlags,
|
|||
HRESULT WINAPI VarNumFromParseNum(NUMPARSE *pNumprs, BYTE *rgbDig,
|
||||
ULONG dwVtBits, VARIANT *pVarDst)
|
||||
{
|
||||
/* Scale factors and limits for double arithmatic */
|
||||
/* Scale factors and limits for double arithmetics */
|
||||
static const double dblMultipliers[11] = {
|
||||
1.0, 10.0, 100.0, 1000.0, 10000.0, 100000.0,
|
||||
1000000.0, 10000000.0, 100000000.0, 1000000000.0, 10000000000.0
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
* 4. resolve the win9x case when there is a need or the testing frame work
|
||||
* offers a nice way.
|
||||
* 5. The test app creates a window, the user should not take the focus
|
||||
* away during its short existance. I could do something to prevent that
|
||||
* away during its short existence. I could do something to prevent that
|
||||
* if it is a problem.
|
||||
*
|
||||
*/
|
||||
|
|
|
@ -564,7 +564,7 @@
|
|||
|
||||
/* MENUBAND parts */
|
||||
#define MDP_NEWAPPBUTTON 1
|
||||
/* sepErator isn't a typo, as per microsofts headers */
|
||||
/* MDP_SEPERATOR isn't a typo, as per Microsoft's headers */
|
||||
#define MDP_SEPERATOR 2
|
||||
|
||||
/* MENUBAND NEWAPPBUTTON states */
|
||||
|
|
|
@ -296,7 +296,7 @@ sub READ_DEFAULTS
|
|||
# decomposition of the form "<foo> 1234" -> use char if type is known
|
||||
if (($src >= 0xf900 && $src < 0xfb00) || ($src >= 0xfe30 && $src < 0xfffd))
|
||||
{
|
||||
# Single char decomposition in the compatability range
|
||||
# Single char decomposition in the compatibility range
|
||||
$compatmap_table[$src] = hex $2;
|
||||
}
|
||||
next unless ($1 eq "font" ||
|
||||
|
@ -329,7 +329,7 @@ sub READ_DEFAULTS
|
|||
elsif ($decomp =~ /^(<[a-z]+>\s)*([0-9a-fA-F]+)$/ &&
|
||||
(($src >= 0xf900 && $src < 0xfb00) || ($src >= 0xfe30 && $src < 0xfffd)))
|
||||
{
|
||||
# Single char decomposition in the compatability range
|
||||
# Single char decomposition in the compatibility range
|
||||
$compatmap_table[$src] = hex $2;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -624,7 +624,7 @@ static void processSetValue(LPSTR cmdline)
|
|||
{
|
||||
LPSTR argv[SET_VALUE_MAX_ARGS]; /* args storage */
|
||||
|
||||
LPSTR token = NULL; /* current token analized */
|
||||
LPSTR token = NULL; /* current token analyzed */
|
||||
ULONG argCounter = 0; /* counter of args */
|
||||
INT counter;
|
||||
HRESULT hRes = 0;
|
||||
|
@ -672,7 +672,7 @@ static void processSetValue(LPSTR cmdline)
|
|||
static void processQueryValue(LPSTR cmdline)
|
||||
{
|
||||
LPSTR argv[QUERY_VALUE_MAX_ARGS];/* args storage */
|
||||
LPSTR token = NULL; /* current token analized */
|
||||
LPSTR token = NULL; /* current token analyzed */
|
||||
ULONG argCounter = 0; /* counter of args */
|
||||
INT counter;
|
||||
HRESULT hRes = 0;
|
||||
|
@ -995,7 +995,7 @@ static void doUnregisterDLL(LPSTR stdInput) {
|
|||
*/
|
||||
int PASCAL WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
|
||||
{
|
||||
LPSTR token = NULL; /* current token analized */
|
||||
LPSTR token = NULL; /* current token analyzed */
|
||||
LPSTR stdInput = NULL; /* line read from stdin */
|
||||
INT cmdIndex = -1; /* index of the command in array */
|
||||
LPSTR nextLine = NULL;
|
||||
|
@ -1082,7 +1082,7 @@ int PASCAL WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
|
|||
}
|
||||
|
||||
/*
|
||||
* We process every lines even the NULL (last) line, to indicate the
|
||||
* We process every line, even the NULL (last) line, to indicate the
|
||||
* end of the processing to the specific process.
|
||||
*/
|
||||
commandAPIs[cmdIndex](stdInput);
|
||||
|
|
|
@ -776,7 +776,7 @@ void processQueryValue(LPSTR cmdline)
|
|||
exit(1);
|
||||
#if 0
|
||||
LPSTR argv[QUERY_VALUE_MAX_ARGS];/* args storage */
|
||||
LPSTR token = NULL; /* current token analized */
|
||||
LPSTR token = NULL; /* current token analyzed */
|
||||
ULONG argCounter = 0; /* counter of args */
|
||||
INT counter;
|
||||
HRESULT hRes = 0;
|
||||
|
|
|
@ -44,8 +44,8 @@ my %options_long = (
|
|||
"shared" => { default => 0, description => "show shared functions between Win16 and Win32" },
|
||||
"shared-segmented" => { default => 0, description => "segmented shared functions between Win16 and Win32 checking" },
|
||||
|
||||
"config" => { default => 1, parent => "local", description => "check configuration include consistancy" },
|
||||
"config-unnessary" => { default => 0, parent => "config", description => "check for unnessary #include \"config.h\"" },
|
||||
"config" => { default => 1, parent => "local", description => "check configuration include consistency" },
|
||||
"config-unnecessary" => { default => 0, parent => "config", description => "check for unnecessary #include \"config.h\"" },
|
||||
|
||||
"spec-mismatch" => { default => 0, description => "spec file mismatch checking" },
|
||||
|
||||
|
|
|
@ -663,7 +663,7 @@ foreach my $file (@c_files) {
|
|||
preprocessor_found => $found_preprocessor
|
||||
});
|
||||
|
||||
if($options->config_unnessary) {
|
||||
if($options->config_unnecessary) {
|
||||
if($config && $conditional == 0) {
|
||||
$output->write("$file: include2info config.h but do not use any conditionals\n");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue