| 277 | bool subtitleFileFound = false; |
| 278 | if (skipIfSubtitlesExists) { |
| 279 | foreach (QString subExt, staticConfig->subtitleExtensions()) { |
| 280 | if (QFile::exists((*p).absolutePath() + "/" + |
| 281 | (*p).completeBaseName() + "." + subExt)) { |
| 282 | subtitleFileFound = true; |
| 283 | break; |
| 284 | } |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | if (subtitleFileFound) { |
nothing calls this directly
no outgoing calls
no test coverage detected