Frm_Editor.pas Memory leak
Brought to you by:
hhernler,
mackermann
TfrmEditor created but never destroyed 2 TProgram
objects, referenced in datamembers FProgram and
FInsightProgram.
Add the following lines to the destructor of the form and
it will be fixed:
If Assigned(FProgram) then FreeAndNil(FProgram);
If Assigned(FInsightProgram) then FreeAndNil
(FInsightProgram);