mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 19:59:14 +02:00
* Free searchitems stringlist
git-svn-id: trunk@59154 -
This commit is contained in:
parent
58bc4c9498
commit
d62467de68
@ -12,6 +12,7 @@ object SpotterForm: TSpotterForm
|
||||
OnActivate = FormActivate
|
||||
OnClose = FormClose
|
||||
OnCreate = FormCreate
|
||||
OnDestroy = FormDestroy
|
||||
OnShow = FormShow
|
||||
Position = poDefaultSizeOnly
|
||||
ShowInTaskBar = stNever
|
||||
|
@ -71,6 +71,7 @@ type
|
||||
procedure FormActivate(Sender: TObject);
|
||||
procedure FormClose(Sender: TObject; var CloseAction: TCloseAction);
|
||||
procedure FormCreate(Sender: TObject);
|
||||
procedure FormDestroy(Sender: TObject);
|
||||
procedure FormShow(Sender: TObject);
|
||||
procedure LBMatchesClick(Sender: TObject);
|
||||
procedure LBMatchesDrawItem(Control: TWinControl; Index: Integer;
|
||||
@ -316,6 +317,11 @@ begin
|
||||
FOrgCaption:=Caption;
|
||||
end;
|
||||
|
||||
procedure TSpotterForm.FormDestroy(Sender: TObject);
|
||||
begin
|
||||
FreeAndNil(FSearchItems);
|
||||
end;
|
||||
|
||||
procedure TSpotterForm.FormShow(Sender: TObject);
|
||||
Var
|
||||
MF : TForm;
|
||||
|
Loading…
Reference in New Issue
Block a user