LCL: Call FDataLink.Free instead of FDataLink.Destroy in TDBText.Destroy. Issue #32453, patch from Michal Gawrycki.

git-svn-id: trunk@55891 -
This commit is contained in:
juha 2017-09-21 20:55:01 +00:00
parent 9ac706fc7a
commit de2ecafa18

View File

@ -101,7 +101,7 @@ end;
destructor TDBText.Destroy;
begin
FDataLink.Destroy;
FDataLink.Free;
inherited Destroy;
end;