* In view of recent bug, use traditional for i:=Low() to High instead of for in

git-svn-id: trunk@27090 -
This commit is contained in:
michael 2014-03-11 10:48:30 +00:00
parent 742c590a3a
commit c07559bbd1

View File

@ -1204,6 +1204,7 @@ end;
Function TTextWriter.Write(Const Args: Array of const) : Integer;
Var
I : Integer;
V : TVarRec;
S : String;
U : UnicodeString;
@ -1211,8 +1212,9 @@ Var
begin
Result:=0;
For V in Args do
For I:=Low(Args) to High(Args) do
begin
V:=Args[i];
S:='';
U:='';
case V.VType of