| 73 | |
| 74 | |
| 75 | ModuleItem DebugModulesListModel::getRow(int row) const |
| 76 | { |
| 77 | if ((size_t)row >= m_items.size()) |
| 78 | throw std::runtime_error("row index out-of-bound"); |
| 79 | |
| 80 | return m_items[row]; |
| 81 | } |
| 82 | |
| 83 | |
| 84 | QModelIndex DebugModulesListModel::index(int row, int column, const QModelIndex&) const |
no test coverage detected