mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 01:59:34 +02:00
debugger: skip pause when breakpoint action does not contain "Break"
git-svn-id: trunk@30713 -
This commit is contained in:
parent
012e19a7d9
commit
e770073129
@ -4169,9 +4169,10 @@ begin
|
||||
Changed;
|
||||
end;
|
||||
|
||||
procedure TIDEBreakPoint.DoHit(const ACount: Integer; var AContinue: Boolean );
|
||||
procedure TIDEBreakPoint.DoHit(const ACount: Integer; var AContinue: Boolean);
|
||||
begin
|
||||
inherited DoHit(ACount, AContinue);
|
||||
AContinue := AContinue or not (bpaStop in Actions);
|
||||
if bpaLogMessage in Actions
|
||||
then FMaster.DoLogMessage(FLogMessage);
|
||||
if bpaLogCallStack in Actions
|
||||
|
Loading…
Reference in New Issue
Block a user