Debugger, LLDB: reworded misleading message: "Debugger stopped" => "Process stoppend"

This commit is contained in:
Martin 2022-08-31 13:18:09 +02:00
parent 3eb79656c0
commit 64380b2fd2

View File

@ -943,7 +943,7 @@ const
var
CanContinue: Boolean;
begin
Debugger.DoException(deExternal, Format('Debugger stopped with reason: %s', [AStopReason]), Debugger.FCurrentLocation, '', CanContinue);
Debugger.DoException(deExternal, Format('Process stopped with reason: %s', [AStopReason]), Debugger.FCurrentLocation, '', CanContinue);
SetDebuggerState(dsPause); // after GetLocation => dsPause may run stack, watches etc
end;