| 132 | } |
| 133 | |
| 134 | CheckSetSelection CheckSetSelectionManager::checkSetSelection(const QString& checkSetSelectionId) const |
| 135 | { |
| 136 | CheckSetSelection result; |
| 137 | |
| 138 | for (const CheckSetSelection& checkSetSelection : m_checkSetSelections) { |
| 139 | if (checkSetSelection.id() == checkSetSelectionId) { |
| 140 | result = checkSetSelection; |
| 141 | break; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | return result; |
| 146 | } |
| 147 | |
| 148 | QString CheckSetSelectionManager::defaultCheckSetSelectionId() const |
| 149 | { |