* OwnsObjects must not be changed during lifetime of TFPObjectHashList, made it read-only (bugs ID 28910)

git-svn-id: trunk@32321 -
This commit is contained in:
michael 2015-11-14 15:58:59 +00:00
parent cf925a108d
commit 8db06c7878

View File

@ -481,7 +481,7 @@ type
Function Iterate(aMethod: TObjectIteratorMethod): TObject; virtual;
Procedure Add(const aKey: string; AItem : TObject); virtual;
property Items[const index: string]: TObject read GetData write SetData; default;
Property OwnsObjects : Boolean Read FOwnsObjects Write FOwnsObjects;
Property OwnsObjects : Boolean Read FOwnsObjects;
end;
EDuplicate = class(Exception);