spell correction

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1309 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa 2010-09-01 00:24:32 +00:00
parent 02726bf11d
commit d246ccc22b
3 changed files with 6 additions and 6 deletions

View File

@ -2179,12 +2179,12 @@ end;
{$WARNINGS OFF}
function TArrayStackItem.CreateInnerBuffer(const ADataType: TDataType): PDataBuffer;
begin
raise EBinaryFormatterException.CreateFmt(SERR_InsupportedOperation,['TArrayStackItem.CreateInnerBuffer']);
raise EBinaryFormatterException.CreateFmt(SERR_UnsupportedOperation,['TArrayStackItem.CreateInnerBuffer']);
end;
function TArrayStackItem.GetInnerBuffer(): PDataBuffer;
begin
raise EBinaryFormatterException.CreateFmt(SERR_InsupportedOperation,['TArrayStackItem.GetInnerBuffer']);
raise EBinaryFormatterException.CreateFmt(SERR_UnsupportedOperation,['TArrayStackItem.GetInnerBuffer']);
end;
{$WARNINGS ON}

View File

@ -2093,7 +2093,7 @@ end;
{$WARNINGS OFF} {$HINTS OFF}
function TSimpleTypeStackItem.FindNode(var ANodeName: string): TDOMNode;
begin
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['FindNode']);
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['FindNode']);
end;
function TSimpleTypeStackItem.CreateBuffer(
@ -2101,12 +2101,12 @@ function TSimpleTypeStackItem.CreateBuffer(
const ADataType: TXmlRpcDataType
) : TDOMNode;
begin
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['CreateBuffer']);
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['CreateBuffer']);
end;
function TSimpleTypeStackItem.GetScopeItemNames(const AReturnList: TStrings): Integer;
begin
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['GetScopeItemNames']);
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['GetScopeItemNames']);
end;
{$WARNINGS ON} {$HINTS ON}

View File

@ -31,7 +31,6 @@ resourcestring
SERR_IndexOutOfBound = 'Index out of bound : %d.';
SERR_IncompleteParamTypeRegistration = 'Incomplete type registration for the type of this parameter : "%s".';
SERR_InnerScopeMustBeSimpleType = 'Inner Scope value must be a "simple type" value.';
SERR_InsupportedOperation = 'Insupported operation : "%s".';
SERR_InvalidArrayBounds = 'Invalid array bounds.';
SERR_InvalidArrayLength = 'Invalid array length : %d.';
SERR_InvalidCollectionLength = 'Invalid collection length : %d.';
@ -62,6 +61,7 @@ resourcestring
SERR_TypeNotRegistered = 'Type not registered : "%s".';
SERR_UnexpectedEndOfData = 'Unexpected end of data.';
SERR_UnknownProperty = 'Unknown property : "%s".';
SERR_UnsupportedOperation = 'Unsupported operation : "%s".';
implementation