prevent calling dastworx on closing a page

This commit is contained in:
Stian Gulpen 2019-12-01 13:53:33 +01:00
parent d3ec00991e
commit 3ad97b3dc2
2 changed files with 6 additions and 4 deletions

View File

@ -573,7 +573,8 @@ procedure TSymbolListWidget.docClosing(document: TDexedMemo);
begin
if fDoc <> document then
exit;
if fToolProc.Running then
fToolProc.Terminate(0);
fDoc := nil;
clearTree;
updateVisibleCat;

View File

@ -347,7 +347,8 @@ begin
exit;
fDoc := nil;
if Visible and fAutoRefresh then
callToolProcess;
clearTodoList;
killToolProcess();
end;
{$ENDREGION}
@ -399,7 +400,7 @@ begin
exit(tcFile);
if (fProj <> nil) and fDoc.isNil then
exit(tcProject);
//
if fProj.isSource(fDoc.fileName) then
exit(tcProject)
else
@ -410,7 +411,7 @@ procedure TTodoListWidget.killToolProcess;
begin
if fToolProc.isNil then
exit;
//
fToolProc.Terminate(0);
fToolProc.Free;
fToolProc := nil;