From 2cf32ee41ee8c87a32a7395ea9da540a49d37566 Mon Sep 17 00:00:00 2001 From: martin Date: Fri, 13 Jul 2018 23:32:31 +0000 Subject: [PATCH] lldb debugger: fix continue running git-svn-id: trunk@58512 - --- components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas b/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas index 8d053a3a4a..13544d1831 100644 --- a/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas +++ b/components/lazdebuggers/lazdebuggerlldb/lldbinstructions.pas @@ -573,7 +573,7 @@ constructor TLldbInstructionProcessStep.Create( AStepAction: TLldbInstructionProcessStepAction); begin case AStepAction of - saContinue: inherited Create('thread continue'); + saContinue: inherited Create('process continue'); saOver: inherited Create('thread step-over'); saInto: inherited Create('thread step-in'); saOut: inherited Create('thread step-out');