mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 05:56:16 +02:00
IDE: fixed run abort
git-svn-id: trunk@45195 -
This commit is contained in:
parent
305b621aa8
commit
503ddc71ad
@ -34,6 +34,8 @@ const
|
||||
SubToolDefault = 'External Tool';
|
||||
SubToolDefaultPriority = 0;
|
||||
|
||||
AbortedExitCode = 12321;
|
||||
|
||||
type
|
||||
TETShareStringEvent = procedure(var s: string) of object;
|
||||
|
||||
|
@ -7286,7 +7286,10 @@ end;
|
||||
function TMainIDE.DoAbortBuild: TModalResult;
|
||||
begin
|
||||
Result:=mrOk;
|
||||
{$IFDEF EnableNewExtTools}
|
||||
{$ELSE}
|
||||
if ToolStatus<>itBuilder then exit;
|
||||
{$ENDIF}
|
||||
AbortBuild;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user