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

@@ -152,11 +152,15 @@ DebuggerSettings *DebuggerSettings::instance()
instance->insertItem(LogTimeStamps, item);
item = new SavedAction(instance);
item->setText(tr("Step by instruction"));
item->setText(tr("Operate by instruction"));
item->setCheckable(true);
item->setDefaultValue(false);
item->setIcon(QIcon(":/debugger/images/debugger_stepoverproc_small.png"));
instance->insertItem(StepByInstruction, item);
item->setToolTip(tr("This switches the debugger to instruction-wise "
"operation mode. In this mode, stepping operates on single "
"instructions and the source location view also shows the "
"disassembled instructions."));
instance->insertItem(OperateByInstruction, item);
//
// Locals & Watchers