You've already forked lazarus-ccr
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:
@ -2179,12 +2179,12 @@ end;
|
|||||||
{$WARNINGS OFF}
|
{$WARNINGS OFF}
|
||||||
function TArrayStackItem.CreateInnerBuffer(const ADataType: TDataType): PDataBuffer;
|
function TArrayStackItem.CreateInnerBuffer(const ADataType: TDataType): PDataBuffer;
|
||||||
begin
|
begin
|
||||||
raise EBinaryFormatterException.CreateFmt(SERR_InsupportedOperation,['TArrayStackItem.CreateInnerBuffer']);
|
raise EBinaryFormatterException.CreateFmt(SERR_UnsupportedOperation,['TArrayStackItem.CreateInnerBuffer']);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TArrayStackItem.GetInnerBuffer(): PDataBuffer;
|
function TArrayStackItem.GetInnerBuffer(): PDataBuffer;
|
||||||
begin
|
begin
|
||||||
raise EBinaryFormatterException.CreateFmt(SERR_InsupportedOperation,['TArrayStackItem.GetInnerBuffer']);
|
raise EBinaryFormatterException.CreateFmt(SERR_UnsupportedOperation,['TArrayStackItem.GetInnerBuffer']);
|
||||||
end;
|
end;
|
||||||
{$WARNINGS ON}
|
{$WARNINGS ON}
|
||||||
|
|
||||||
|
@ -2093,7 +2093,7 @@ end;
|
|||||||
{$WARNINGS OFF} {$HINTS OFF}
|
{$WARNINGS OFF} {$HINTS OFF}
|
||||||
function TSimpleTypeStackItem.FindNode(var ANodeName: string): TDOMNode;
|
function TSimpleTypeStackItem.FindNode(var ANodeName: string): TDOMNode;
|
||||||
begin
|
begin
|
||||||
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['FindNode']);
|
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['FindNode']);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TSimpleTypeStackItem.CreateBuffer(
|
function TSimpleTypeStackItem.CreateBuffer(
|
||||||
@ -2101,12 +2101,12 @@ function TSimpleTypeStackItem.CreateBuffer(
|
|||||||
const ADataType: TXmlRpcDataType
|
const ADataType: TXmlRpcDataType
|
||||||
) : TDOMNode;
|
) : TDOMNode;
|
||||||
begin
|
begin
|
||||||
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['CreateBuffer']);
|
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['CreateBuffer']);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
function TSimpleTypeStackItem.GetScopeItemNames(const AReturnList: TStrings): Integer;
|
function TSimpleTypeStackItem.GetScopeItemNames(const AReturnList: TStrings): Integer;
|
||||||
begin
|
begin
|
||||||
raise EXmlRpcException.CreateFmt(SERR_InsupportedOperation,['GetScopeItemNames']);
|
raise EXmlRpcException.CreateFmt(SERR_UnsupportedOperation,['GetScopeItemNames']);
|
||||||
end;
|
end;
|
||||||
{$WARNINGS ON} {$HINTS ON}
|
{$WARNINGS ON} {$HINTS ON}
|
||||||
|
|
||||||
|
@ -31,7 +31,6 @@ resourcestring
|
|||||||
SERR_IndexOutOfBound = 'Index out of bound : %d.';
|
SERR_IndexOutOfBound = 'Index out of bound : %d.';
|
||||||
SERR_IncompleteParamTypeRegistration = 'Incomplete type registration for the type of this parameter : "%s".';
|
SERR_IncompleteParamTypeRegistration = 'Incomplete type registration for the type of this parameter : "%s".';
|
||||||
SERR_InnerScopeMustBeSimpleType = 'Inner Scope value must be a "simple type" value.';
|
SERR_InnerScopeMustBeSimpleType = 'Inner Scope value must be a "simple type" value.';
|
||||||
SERR_InsupportedOperation = 'Insupported operation : "%s".';
|
|
||||||
SERR_InvalidArrayBounds = 'Invalid array bounds.';
|
SERR_InvalidArrayBounds = 'Invalid array bounds.';
|
||||||
SERR_InvalidArrayLength = 'Invalid array length : %d.';
|
SERR_InvalidArrayLength = 'Invalid array length : %d.';
|
||||||
SERR_InvalidCollectionLength = 'Invalid collection length : %d.';
|
SERR_InvalidCollectionLength = 'Invalid collection length : %d.';
|
||||||
@ -62,6 +61,7 @@ resourcestring
|
|||||||
SERR_TypeNotRegistered = 'Type not registered : "%s".';
|
SERR_TypeNotRegistered = 'Type not registered : "%s".';
|
||||||
SERR_UnexpectedEndOfData = 'Unexpected end of data.';
|
SERR_UnexpectedEndOfData = 'Unexpected end of data.';
|
||||||
SERR_UnknownProperty = 'Unknown property : "%s".';
|
SERR_UnknownProperty = 'Unknown property : "%s".';
|
||||||
|
SERR_UnsupportedOperation = 'Unsupported operation : "%s".';
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user