mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-26 13:09:09 +02:00
* 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:
parent
3d771a7d39
commit
501f20c546
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user