| 148 | } |
| 149 | |
| 150 | QString CheckSetSelectionListModel::checkSetSelectionAsString(int row) const |
| 151 | { |
| 152 | const bool isValidIndex = |
| 153 | (0 <= row) && (row < m_checkSetSelections.count()); |
| 154 | |
| 155 | return isValidIndex ? m_checkSetSelections.at(row).selectionAsString() : QString(); |
| 156 | } |
| 157 | |
| 158 | int CheckSetSelectionListModel::row(const QString& checkSetSelectionId) const |
| 159 | { |
no test coverage detected