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

@@ -173,7 +173,7 @@ Qt::ItemFlags StackHandler::flags(const QModelIndex &index) const
return QAbstractTableModel::flags(index);
const StackFrame &frame = m_stackFrames.at(index.row());
const bool isValid = (!frame.file.isEmpty() && !frame.function.isEmpty())
|| theDebuggerBoolSetting(StepByInstruction);
|| theDebuggerBoolSetting(OperateByInstruction);
return isValid ? QAbstractTableModel::flags(index) : Qt::ItemFlags(0);
}