| 145 | } |
| 146 | |
| 147 | void frmOptions::selectTmpPath() { |
| 148 | QString tmpDir = QFileDialog::getExistingDirectory( |
| 149 | this, tr("Specify temporary directory"), |
| 150 | QFileInfo(ui.leTmpPath->text()).path(), |
| 151 | QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks); |
| 152 | if (!tmpDir.isEmpty()) ui.leTmpPath->setText(QFileInfo(tmpDir).path()); |
| 153 | } |
| 154 | |
| 155 | void frmOptions::twEnginesSelectionChanged() { |
| 156 | if (ui.twEngines->selectedItems().size() < 1) return; |
nothing calls this directly
no outgoing calls
no test coverage detected