| 66 | |
| 67 | |
| 68 | BreakpointItem DebugBreakpointsListModel::getRow(int row) const |
| 69 | { |
| 70 | if ((size_t)row >= m_items.size()) |
| 71 | throw std::runtime_error("row index out-of-bound"); |
| 72 | |
| 73 | return m_items[row]; |
| 74 | } |
| 75 | |
| 76 | |
| 77 | QModelIndex DebugBreakpointsListModel::index(int row, int column, const QModelIndex&) const |