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

Method index

ui/stackwidget.cpp:94–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

92
93
94QModelIndex DebugStackListModel::index(int row, int column, const QModelIndex&) const
95{
96 if (row < 0 || (size_t)row >= m_items.size() || column >= columnCount())
97 {
98 return QModelIndex();
99 }
100
101 return createIndex(row, column, (void*)&m_items[row]);
102}
103
104
105QVariant DebugStackListModel::data(const QModelIndex& index, int role) const

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected