LazDebuggerFp: fix debugln

git-svn-id: trunk@61837 -
This commit is contained in:
martin 2019-09-08 19:03:06 +00:00
parent 3254177a33
commit 736f8b32fa

View File

@ -839,7 +839,7 @@ begin
inherited DoStateChange(AOldState); inherited DoStateChange(AOldState);
if Debugger.State in [dsPause, dsInternalPause] then if Debugger.State in [dsPause, dsInternalPause] then
begin begin
if FDelayedRemoveBreakpointList.Count>0 then if FDelayedRemoveBreakpointList.Count>0 then begin
debuglnEnter(DBG_BREAKPOINTS, ['TFPBreakpoints.DoStateChange REMOVE DELAYED']); debuglnEnter(DBG_BREAKPOINTS, ['TFPBreakpoints.DoStateChange REMOVE DELAYED']);
for i := FDelayedRemoveBreakpointList.Count-1 downto 0 do for i := FDelayedRemoveBreakpointList.Count-1 downto 0 do
begin begin
@ -850,6 +850,7 @@ begin
FDelayedRemoveBreakpointList.Delete(i); FDelayedRemoveBreakpointList.Delete(i);
end; end;
debuglnExit(DBG_BREAKPOINTS, ['<< TFPBreakpoints.DoStateChange REMOVE DELAYED ' ]); debuglnExit(DBG_BREAKPOINTS, ['<< TFPBreakpoints.DoStateChange REMOVE DELAYED ' ]);
end;
end; end;
end; end;