MCPcopy Create free account
hub / github.com/QNapi/qnapi / clearSubtitlesList

Method clearSubtitlesList

libqnapi/src/engines/subtitledownloadengine.cpp:27–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25QString SubtitleDownloadEngine::moviePath() { return movie; }
26
27void SubtitleDownloadEngine::clearSubtitlesList() {
28 foreach (SubtitleInfo s, subtitlesList) {
29 if (QFile::exists(s.sourceLocation)) QFile::remove(s.sourceLocation);
30 }
31 subtitlesList.clear();
32}
33
34Maybe<SubtitleInfo> SubtitleDownloadEngine::resolveById(QUuid id) {
35 foreach (SubtitleInfo s, subtitlesList) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected