mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-06 21:58:32 +01:00
IDE: external tools: replaced Cancel with Ignore, bug #11073
git-svn-id: trunk@15357 -
This commit is contained in:
parent
7814e569d4
commit
ce26f75399
@ -315,7 +315,8 @@ begin
|
||||
Format(lisExtToolUnableToRunTheTool, ['"', Title, '"', #13,
|
||||
'Program '+Filename+' not found']
|
||||
),
|
||||
mtError,[mbCancel,mbAbort],0);
|
||||
mtError,[mbIgnore,mbAbort],0);
|
||||
if Result=mrIgnore then Result:=mrCancel;
|
||||
exit;
|
||||
end;
|
||||
Filename:=NewFilename;
|
||||
@ -406,7 +407,8 @@ begin
|
||||
Result:=MessageDlg(lisExtToolFailedToRunTool,
|
||||
Format(lisExtToolUnableToRunTheTool, ['"', Title, '"', #13, e.Message]
|
||||
),
|
||||
mtError,[mbCancel,mbAbort],0);
|
||||
mtError,[mbIgnore,mbAbort],0);
|
||||
if Result=mrIgnore then Result:=mrCancel;
|
||||
exit;
|
||||
end;
|
||||
end;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user