FileBrowser: fix AV

This commit is contained in:
Ondrej Pokorny 2024-08-03 19:35:02 +02:00
parent aae7ed1f94
commit c16997ba82

View File

@ -295,7 +295,8 @@ constructor TFileBrowserController.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
LazarusIDE.AddHandlerOnProjectOpened(@DoProjectChanged);
SourceEditorManagerIntf.RegisterChangeEvent(semEditorActivate,@ActiveEditorChanged);
if SourceEditorManagerIntf <> nil then
SourceEditorManagerIntf.RegisterChangeEvent(semEditorActivate,@ActiveEditorChanged);
FDirectoriesBeforeFiles:=DefaultDirectoriesBeforeFiles;
FFilesInTree:=DefaultFilesInTree;
ReadConfig;
@ -303,7 +304,8 @@ end;
destructor TFileBrowserController.Destroy;
begin
LazarusIDE.RemoveAllHandlersOfObject(Self);
if SourceEditorManagerIntf <> nil then
SourceEditorManagerIntf.UnRegisterChangeEvent(semEditorActivate,@ActiveEditorChanged);
if FNeedSave then
WriteConfig;
inherited;