debugger: rename StepByInstruction into OperateByInstruction

This commit is contained in:
hjk
2009-09-29 11:13:19 +02:00
parent d42475fd90
commit 573ca3ad85
7 changed files with 24 additions and 19 deletions

View File

@@ -2360,7 +2360,7 @@ void GdbEngine::handleStackListFrames(const GdbResponse &response)
theDebuggerAction(ExpandStack)->setEnabled(canExpand);
manager()->stackHandler()->setFrames(stackFrames, canExpand);
if (topFrame != -1 || theDebuggerBoolSetting(StepByInstruction)) {
if (topFrame != -1 || theDebuggerBoolSetting(OperateByInstruction)) {
const StackFrame &frame = manager()->stackHandler()->currentFrame();
gotoLocation(frame, true);
}