| 162 | } |
| 163 | |
| 164 | void frmScan::scanFinished() { |
| 165 | enableControlWidgets(true); |
| 166 | enableFilesWidgets(ui.lwMovies->count() > 0); |
| 167 | ui.pbScan->setText(tr("Scan")); |
| 168 | ui.lbAction->setText( |
| 169 | (ui.lwMovies->count() > 0) |
| 170 | ? tr("Select the videos you wish to download subtitles for.") |
| 171 | : tr("No video files found.")); |
| 172 | } |
| 173 | |
| 174 | void frmScan::enableControlWidgets(bool enable) { |
| 175 | ui.lbDirectory->setEnabled(enable); |
nothing calls this directly
no outgoing calls
no test coverage detected