mirror of https://gitlab.com/basile.b/dexed.git
prevent calling dastworx on closing a page
This commit is contained in:
parent
d3ec00991e
commit
3ad97b3dc2
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue