* reversed destruction order of TFPObjectList as per Mantis 13715.

Note that it is _NOT_ good coding to rely on such things

git-svn-id: trunk@13168 -
This commit is contained in:
marco 2009-05-17 17:09:26 +00:00
parent 3d771a7d39
commit 501f20c546

View File

@ -613,7 +613,7 @@ var
i: integer;
begin
if FFreeObjects then
for i := 0 to FList.Count - 1 do
for i := FList.Count-1 downto 0 do
TObject(FList[i]).Free;
FList.Clear;
end;