ide: fixed a typo in the version info Assign method (bug #0017595)

git-svn-id: trunk@27650 -
This commit is contained in:
paul 2010-10-11 08:45:55 +00:00
parent 1589de464e
commit 6ffbf6e16e

View File

@ -661,7 +661,7 @@ var
begin
if Equals(aTable) then exit;
Clear;
for i := 0 to Count - 1 do
for i := 0 to aTable.Count - 1 do
inherited Add(aTable.Keys[i],aTable.ValuesByIndex[i]);
DoModified;
end;