| 228 | } |
| 229 | |
| 230 | void CheckSetManageWidget::addCheckSetSelection() |
| 231 | { |
| 232 | const auto checkSetSelectionName = askNewCheckSetSelectionName(QString()); |
| 233 | if (checkSetSelectionName.isEmpty()) { |
| 234 | return; |
| 235 | } |
| 236 | |
| 237 | const int checkSetSelectionIndex = m_checkSetSelectionListModel->addCheckSetSelection(checkSetSelectionName); |
| 238 | |
| 239 | m_ui.checkSetSelect->setCurrentIndex(checkSetSelectionIndex); |
| 240 | m_ui.enabledChecks->setFocus(Qt::OtherFocusReason); |
| 241 | } |
| 242 | |
| 243 | void CheckSetManageWidget::cloneSelectedCheckSetSelection() |
| 244 | { |
nothing calls this directly
no test coverage detected