| 35 | } |
| 36 | |
| 37 | void NewContestWidget::selectContestPath() { |
| 38 | QString path = QFileDialog::getExistingDirectory(this, tr("Select Contest Path"), QDir::homePath()); |
| 39 | |
| 40 | if (! path.isEmpty()) |
| 41 | ui->contestPath->setText(QDir::toNativeSeparators(path)); |
| 42 | } |
| 43 | |
| 44 | void NewContestWidget::savingNameChanged() { |
| 45 | QString path = QDir::homePath(); |
nothing calls this directly
no outgoing calls
no test coverage detected