| 244 | } |
| 245 | |
| 246 | void frmOptions::pbEngineInfoClicked() { |
| 247 | QString engineName = ui.twEngines->selectedItems().at(0)->text(); |
| 248 | QString engineDescription = |
| 249 | enginesRegistry->engineMetadata(engineName).description(); |
| 250 | |
| 251 | QMessageBox::information(this, tr("%1 subtitles engine info").arg(engineName), |
| 252 | engineDescription); |
| 253 | } |
| 254 | |
| 255 | void frmOptions::subFormatChanged(int format) { |
| 256 | if (format == 0) { |
nothing calls this directly
no test coverage detected