fix create new record upon put object bug

git-svn-id: trunk@5554 -
This commit is contained in:
micha 2004-06-11 20:15:40 +00:00
parent fdce941451
commit 824f2101de

View File

@ -173,7 +173,10 @@ var
begin
ARecord:=Records[Index];
if ARecord=nil then
begin
CreateRecord(Index);
ARecord:=Records[Index];
end;
TObject(ARecord^):=AnObject;
end;