mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 14:58:13 +02:00
FileBrowser: fix AV
This commit is contained in:
parent
aae7ed1f94
commit
c16997ba82
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user