| 61 | } |
| 62 | |
| 63 | QStringList TMPlayerSubtitleFormat::encode(const SubFile &subFile) const { |
| 64 | QStringList lines; |
| 65 | foreach (const SubEntry &entry, subFile.entries) { |
| 66 | lines.append(encodeEntry(entry)); |
| 67 | } |
| 68 | return lines; |
| 69 | } |
| 70 | |
| 71 | QString TMPlayerSubtitleFormat::encodeEntry(const SubEntry &entry) const { |
| 72 | QString tokensBuff; |
nothing calls this directly
no outgoing calls
no test coverage detected