Assorted spelling fixes.

This commit is contained in:
Francois Gouget 2005-05-30 09:56:56 +00:00 committed by Alexandre Julliard
parent e7d1209e72
commit 62253b752f
6 changed files with 11 additions and 11 deletions

View File

@ -212,7 +212,7 @@ static int MONTHCAL_CalcDayFromPos(MONTHCAL_INFO *infoPtr, int x, int y,
GetClientRect(infoPtr->hwndSelf, &rcClient); GetClientRect(infoPtr->hwndSelf, &rcClient);
/* if the point is outside the x bounds of the window put /* if the point is outside the x bounds of the window put
it at the boundry */ it at the boundary */
if (x > rcClient.right) if (x > rcClient.right)
x = rcClient.right; x = rcClient.right;

View File

@ -946,7 +946,7 @@ free_protect_data:
free_context: free_context:
CryptReleaseContext(hProv,0); CryptReleaseContext(hProv,0);
finished: finished:
/* If some error occured, and no error code was set, force one. */ /* If some error occurred, and no error code was set, force one. */
if (!rc && GetLastError()==ERROR_SUCCESS) if (!rc && GetLastError()==ERROR_SUCCESS)
{ {
SetLastError(ERROR_INVALID_DATA); SetLastError(ERROR_INVALID_DATA);
@ -1112,7 +1112,7 @@ free_context:
free_protect_data: free_protect_data:
free_protect_data(&protect_data); free_protect_data(&protect_data);
finished: finished:
/* If some error occured, and no error code was set, force one. */ /* If some error occurred, and no error code was set, force one. */
if (!rc && GetLastError()==ERROR_SUCCESS) if (!rc && GetLastError()==ERROR_SUCCESS)
{ {
SetLastError(ERROR_INVALID_DATA); SetLastError(ERROR_INVALID_DATA);

View File

@ -119,7 +119,7 @@ typedef struct tagMSICLASS
LPWSTR Argument; LPWSTR Argument;
INT FeatureIndex; INT FeatureIndex;
INT Attributes; INT Attributes;
/* not in the table, set during instalation */ /* not in the table, set during installation */
BOOL Installed; BOOL Installed;
} MSICLASS; } MSICLASS;
@ -131,10 +131,10 @@ typedef struct tagMSIEXTENSION
LPWSTR ProgIDText; LPWSTR ProgIDText;
INT MIMEIndex; INT MIMEIndex;
INT FeatureIndex; INT FeatureIndex;
/* not in the table, set during instalation */ /* not in the table, set during installation */
BOOL Installed; BOOL Installed;
INT VerbCount; INT VerbCount;
INT Verbs[100]; /* yes hard coded limit, but relisticly 100 verbs??? */ INT Verbs[100]; /* yes hard coded limit, but realistically 100 verbs??? */
} MSIEXTENSION; } MSIEXTENSION;
typedef struct tagMSIPROGID typedef struct tagMSIPROGID
@ -144,7 +144,7 @@ typedef struct tagMSIPROGID
INT ClassIndex; INT ClassIndex;
LPWSTR Description; LPWSTR Description;
LPWSTR IconPath; LPWSTR IconPath;
/* not in the table, set during instalation */ /* not in the table, set during installation */
BOOL InstallMe; BOOL InstallMe;
INT CurVerIndex; INT CurVerIndex;
} MSIPROGID; } MSIPROGID;
@ -164,7 +164,7 @@ typedef struct tagMSIMIME
INT ExtensionIndex; INT ExtensionIndex;
WCHAR CLSID[IDENTIFIER_SIZE]; WCHAR CLSID[IDENTIFIER_SIZE];
INT ClassIndex; INT ClassIndex;
/* not in the table, set during instalation */ /* not in the table, set during installation */
BOOL InstallMe; BOOL InstallMe;
} MSIMIME; } MSIMIME;

View File

@ -634,7 +634,7 @@ foreach (sort keys %norm_functions) {
} elsif (defined($arg_conv{$type})) { } elsif (defined($arg_conv{$type})) {
print SPEC "$@$arg_conv{$type}[0] "; print SPEC "$@$arg_conv{$type}[0] ";
} else { } else {
die "No convertion for GL type $type...\n"; die "No conversion for GL type $type...\n";
} }
} }
print SPEC ") wine_$func_name\n"; print SPEC ") wine_$func_name\n";

View File

@ -470,7 +470,7 @@ HRESULT IWineD3DVertexDeclarationImpl_ParseDeclaration8(IWineD3DDeviceImpl* This
{ {
D3DVERTEXELEMENT9* pIt = object->pDeclaration9; D3DVERTEXELEMENT9* pIt = object->pDeclaration9;
TRACE("dumping of D3D9 Convertion:\n"); TRACE("dumping of D3D9 Conversion:\n");
while (0xFF != pIt->Stream) { while (0xFF != pIt->Stream) {
IWineD3DVertexDeclarationImpl_ParseToken9(pIt); IWineD3DVertexDeclarationImpl_ParseToken9(pIt);
++pIt; ++pIt;

View File

@ -57,7 +57,7 @@ MCIERR_OUT_OF_MEMORY, "Not enough memory available for this task. \nQuit one o
MCIERR_DEVICE_OPEN, "The device name is already being used as an alias by this application. Use a unique alias." MCIERR_DEVICE_OPEN, "The device name is already being used as an alias by this application. Use a unique alias."
MCIERR_CANNOT_LOAD_DRIVER, "There is an undetectable problem in loading the specified device driver." MCIERR_CANNOT_LOAD_DRIVER, "There is an undetectable problem in loading the specified device driver."
MCIERR_MISSING_COMMAND_STRING, "No command was specified." MCIERR_MISSING_COMMAND_STRING, "No command was specified."
MCIERR_PARAM_OVERFLOW, "The output string was to large to fit in the return buffer. Increase the size of the buffer." MCIERR_PARAM_OVERFLOW, "The output string was too large to fit in the return buffer. Increase the size of the buffer."
MCIERR_MISSING_STRING_ARGUMENT, "The specified command requires a character-string parameter. Please provide one." MCIERR_MISSING_STRING_ARGUMENT, "The specified command requires a character-string parameter. Please provide one."
MCIERR_BAD_INTEGER, "The specified integer is invalid for this command." MCIERR_BAD_INTEGER, "The specified integer is invalid for this command."
MCIERR_PARSER_INTERNAL, "The device driver returned an invalid return type. Check with the device manufacturer about obtaining a new driver." MCIERR_PARSER_INTERNAL, "The device driver returned an invalid return type. Check with the device manufacturer about obtaining a new driver."