LazDebuggerFp (pure): StepIntoStr -> StepIntoInstr

git-svn-id: trunk@44728 -
This commit is contained in:
joost 2014-04-14 16:59:05 +00:00
parent 96991a9a84
commit 22b80b3cf5
2 changed files with 3 additions and 3 deletions
components
fpdebug
lazdebuggers/lazdebuggerfp

View File

@ -48,7 +48,7 @@ type
destructor Destroy; override;
function Run: boolean;
procedure Stop;
procedure StepIntoStr;
procedure StepIntoInstr;
procedure StepOverInstr;
procedure ProcessLoop;
procedure SendEvents(out continue: boolean);
@ -131,7 +131,7 @@ begin
FMainProcess.TerminateProcess;
end;
procedure TDbgController.StepIntoStr;
procedure TDbgController.StepIntoInstr;
begin
FCurrentThread.SingleStep;
end;

View File

@ -588,7 +588,7 @@ begin
end;
dcStepIntoInstr:
begin
FDbgController.StepIntoStr;
FDbgController.StepIntoInstr;
SetState(dsRun);
StartDebugLoop;
result := true;