Commit 62253b75 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Assorted spelling fixes.

parent e7d1209e
......@@ -212,7 +212,7 @@ static int MONTHCAL_CalcDayFromPos(MONTHCAL_INFO *infoPtr, int x, int y,
GetClientRect(infoPtr->hwndSelf, &rcClient);
/* if the point is outside the x bounds of the window put
it at the boundry */
it at the boundary */
if (x > rcClient.right)
x = rcClient.right;
......
......@@ -946,7 +946,7 @@ free_protect_data:
free_context:
CryptReleaseContext(hProv,0);
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)
{
SetLastError(ERROR_INVALID_DATA);
......@@ -1112,7 +1112,7 @@ free_context:
free_protect_data:
free_protect_data(&protect_data);
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)
{
SetLastError(ERROR_INVALID_DATA);
......
......@@ -119,7 +119,7 @@ typedef struct tagMSICLASS
LPWSTR Argument;
INT FeatureIndex;
INT Attributes;
/* not in the table, set during instalation */
/* not in the table, set during installation */
BOOL Installed;
} MSICLASS;
......@@ -131,10 +131,10 @@ typedef struct tagMSIEXTENSION
LPWSTR ProgIDText;
INT MIMEIndex;
INT FeatureIndex;
/* not in the table, set during instalation */
/* not in the table, set during installation */
BOOL Installed;
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;
typedef struct tagMSIPROGID
......@@ -144,7 +144,7 @@ typedef struct tagMSIPROGID
INT ClassIndex;
LPWSTR Description;
LPWSTR IconPath;
/* not in the table, set during instalation */
/* not in the table, set during installation */
BOOL InstallMe;
INT CurVerIndex;
} MSIPROGID;
......@@ -164,7 +164,7 @@ typedef struct tagMSIMIME
INT ExtensionIndex;
WCHAR CLSID[IDENTIFIER_SIZE];
INT ClassIndex;
/* not in the table, set during instalation */
/* not in the table, set during installation */
BOOL InstallMe;
} MSIMIME;
......
......@@ -634,7 +634,7 @@ foreach (sort keys %norm_functions) {
} elsif (defined($arg_conv{$type})) {
print SPEC "$@$arg_conv{$type}[0] ";
} else {
die "No convertion for GL type $type...\n";
die "No conversion for GL type $type...\n";
}
}
print SPEC ") wine_$func_name\n";
......
......@@ -470,7 +470,7 @@ HRESULT IWineD3DVertexDeclarationImpl_ParseDeclaration8(IWineD3DDeviceImpl* This
{
D3DVERTEXELEMENT9* pIt = object->pDeclaration9;
TRACE("dumping of D3D9 Convertion:\n");
TRACE("dumping of D3D9 Conversion:\n");
while (0xFF != pIt->Stream) {
IWineD3DVertexDeclarationImpl_ParseToken9(pIt);
++pIt;
......
......@@ -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_CANNOT_LOAD_DRIVER, "There is an undetectable problem in loading the specified device driver."
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_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."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment