Fix #890, make the output formatting for Adobe Encore format use a format string for clearness, instead of string building.

Originally committed to SVN as r3055.
This commit is contained in:
Niels Martin Hansen 2009-06-14 02:42:52 +00:00
parent ebcfe43d7e
commit f20d079598
1 changed files with 2 additions and 5 deletions

View File

@ -94,11 +94,8 @@ void EncoreSubtitleFormat::WriteFile(wxString _filename,wxString encoding) {
for (list<AssEntry*>::iterator cur=Line->begin();cur!=Line->end();cur++) {
AssDialogue *current = AssEntry::GetAsDialogue(*cur);
if (current && !current->Comment) {
// Time stamps
wxString timeStamps = wxString::Format(_T("%i "),++i) + ft.FromAssTime(current->Start) + _T(" ") + ft.FromAssTime(current->End);
// Write
file.WriteLineToFile(timeStamps + current->Text);
++i;
file.WriteLineToFile(wxString::Format(_T("%i %s %s %s"), i, ft.FromAssTime(current->Start).c_str(), ft.FromAssTime(current->End).c_str(), current->Text.c_str()));
}
}