You are not logged in.
Pages: 1
Hi Arnaud, first thanks for such a great framework.
I'm using the excellent LVCL with the enhanced RTL for Delphi7, there appears to be memory leak with TImage: 29 – 36 bytes: TCanvas x 1.
TImage’s destructor doesn’t inherit from TGraphicControl/TCustomControl to free fCanvas.
{=====================================================================}
destructor TImage.Destroy;
begin
fPicture.Free;
inherited; // missing from ExtCtrls.pas ?
end;
As an aside, “... and your .EXE will shrink from 300KB to 30KB”, still can’t get mine below 37k :-)
Thanks again for sharing your code.
Karl.
Offline
It is fixed now.
See http://synopse.info/fossil/info/af002ccef4
Thanks for the feedback!
Offline
Pages: 1