* @brief Checks whether the OK button of the dialog can be pressed or not */
| 82 | * @brief Checks whether the OK button of the dialog can be pressed or not |
| 83 | */ |
| 84 | void ImportDatasetDialog::checkOkButton() { |
| 85 | bool enable = (!m_importDatasetWidget->getSelectedDataset().isEmpty()); |
| 86 | okButton->setEnabled(enable); |
| 87 | } |
| 88 | |
| 89 | bool ImportDatasetDialog::importTo(QStatusBar* statusBar) const { |
| 90 | auto* progressBar = new QProgressBar(); |
nothing calls this directly
no test coverage detected