| 140 | } |
| 141 | |
| 142 | QString CheckSetSelectionListModel::checkSetSelectionName(int row) const |
| 143 | { |
| 144 | const bool isValidIndex = |
| 145 | (0 <= row) && (row < m_checkSetSelections.count()); |
| 146 | |
| 147 | return isValidIndex ? m_checkSetSelections.at(row).name() : QString(); |
| 148 | } |
| 149 | |
| 150 | QString CheckSetSelectionListModel::checkSetSelectionAsString(int row) const |
| 151 | { |
no test coverage detected