| 119 | frmOptions::~frmOptions() {} |
| 120 | |
| 121 | void frmOptions::le7zPathChanged() { |
| 122 | QFileInfo f(ui.le7zPath->text()); |
| 123 | ui.le7zPath->setStyleSheet(f.isFile() && f.isExecutable() ? "" |
| 124 | : "color:red;"); |
| 125 | } |
| 126 | |
| 127 | void frmOptions::select7zPath() { |
| 128 | QString path7z = QFileDialog::getOpenFileName( |
nothing calls this directly
no outgoing calls
no test coverage detected