| 140 | } |
| 141 | |
| 142 | void frmOptions::leTmpPathChanged() { |
| 143 | QFileInfo f(ui.leTmpPath->text()); |
| 144 | ui.leTmpPath->setStyleSheet(f.isDir() && f.isWritable() ? "" : "color:red;"); |
| 145 | } |
| 146 | |
| 147 | void frmOptions::selectTmpPath() { |
| 148 | QString tmpDir = QFileDialog::getExistingDirectory( |
nothing calls this directly
no outgoing calls
no test coverage detected