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

Method index

ui/breakpointswidget.cpp:77–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75
76
77QModelIndex DebugBreakpointsListModel::index(int row, int column, const QModelIndex&) const
78{
79 if (row < 0 || (size_t)row >= m_items.size() || column >= columnCount())
80 {
81 return QModelIndex();
82 }
83
84 return createIndex(row, column, (void*)&m_items[row]);
85}
86
87
88QVariant DebugBreakpointsListModel::data(const QModelIndex& index, int role) const

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.80

Tested by

no test coverage detected