* Fixes range check errors, by Anton (bug id 19038)

git-svn-id: trunk@17226 -
This commit is contained in:
michael 2011-04-02 15:44:41 +00:00
parent f235e4c116
commit b78f9f7706

View File

@ -2609,7 +2609,7 @@ Var
I : Integer;
begin
For I:=0 to Length(Params) do
For I:=0 to High(Params) do
begin
If (Result<>'') then
Result:=Result+', ';
@ -2647,7 +2647,7 @@ Function TRecordValues.GetDeclaration(Full : Boolean):AnsiString;
Var
I : Integer;
begin
For I:=0 to Length(Fields) do
For I:=0 to High(Fields) do
begin
If Result='' then
Result:=Result+'; ';
@ -2708,7 +2708,7 @@ Var
I : Integer;
begin
For I:=0 to Length(Values) do
For I:=0 to High(Values) do
begin
If Result='' then
Result:=Result+', ';