TOC file quote fix from Don Fredricks

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4096 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-11-04 20:58:11 +00:00
parent 200d7baff7
commit e351591c14

View file

@ -807,9 +807,9 @@ ExportDialog::export_cue_file (Locations::LocationList& locations, const string&
out << "TITLE \"" << session->name() << "\"" << endl;
if ((header_format_combo.get_active_text() == N_("WAV"))) {
out << "FILE " << path << " WAVE" << endl;
out << "FILE \"" << path << "\" WAVE" << endl;
} else {
out << "FILE " << path << ' ' << (header_format_combo.get_active_text()) << endl;
out << "FILE \"" << path << "\" " << (header_format_combo.get_active_text()) << endl;
}
if (false && numtracks == 0) {