MCPcopy Create free account
hub / github.com/Vector35/debugger / flags

Method flags

ui/stackwidget.cpp:75–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74
75Qt::ItemFlags DebugStackListModel::flags(const QModelIndex& index) const
76{
77 Qt::ItemFlags flag = QAbstractTableModel::flags(index);
78 if (index.column() == DebugStackListModel::ValueColumn)
79 flag |= Qt::ItemIsEditable;
80
81 return flag;
82}
83
84
85DebugStackItem DebugStackListModel::getRow(int row) const

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected