debugger: skip pause when breakpoint action does not contain "Break"

git-svn-id: trunk@30713 -
This commit is contained in:
paul 2011-05-13 06:48:12 +00:00
parent 012e19a7d9
commit e770073129

View File

@ -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