Unexpected Memory Leak
Closed this issue · 2 comments
kazuser commented
Hello there!
Delphi 10.2.1 (25.0.27659.1188) + today's AnyiQuack:
- Open project from \Examples\SlidingForm\
- Add ReportMemoryLeaksOnShutdown := True; to SlidingForm.dpr:
program SlidingForm;
uses
Forms,
Main in 'Main.pas' {Form1},
AQPControlAnimations in '....\AQPControlAnimations.pas',
AnyiQuack in '....\AnyiQuack.pas',
Vcl.Themes,
Vcl.Styles;{$R *.res}
begin
ReportMemoryLeaksOnShutdown := True;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Could you fix it please?
WladiD commented
Check out my last commit and let me know whether the leak is fixed...
kazuser commented
Yep, the problem has been solved, thank you!