summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-15 12:25:25 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-15 12:25:25 +0000
commit1d3fa1a83903be2cbd11d25e5dba3f141f533c09 (patch)
tree48b6f10c8fce9ecc0103b1dc349740d305b5fc43 /gtk2_ardour/export_dialog.cc
parent350718cd14705ec0bbfa7185bbdb407f441eeb80 (diff)
save COMPOSER info to TOC/CUE files (from colinf)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12289 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 4c1ea5f32e..e62da06fa1 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -720,8 +720,8 @@ ExportDialog::export_toc_file (Locations::LocationList& locations, const string&
if ((*i)->cd_info.find("performer") != (*i)->cd_info.end()) {
out << " PERFORMER \"" << (*i)->cd_info["performer"] << "\"" << endl;
}
- if ((*i)->cd_info.find("string_composer") != (*i)->cd_info.end()) {
- out << " COMPOSER \"" << (*i)->cd_info["string_composer"] << "\"" << endl;
+ if ((*i)->cd_info.find("composer") != (*i)->cd_info.end()) {
+ out << " COMPOSER \"" << (*i)->cd_info["composer"] << "\"" << endl;
}
if ((*i)->cd_info.find("isrc") != (*i)->cd_info.end()) {
@@ -934,8 +934,8 @@ ExportDialog::export_cue_file (Locations::LocationList& locations, const string&
out << " PERFORMER \"" << (*i)->cd_info["performer"] << "\"" << endl;
}
- if ((*i)->cd_info.find("string_composer") != (*i)->cd_info.end()) {
- out << " SONGWRITER \"" << (*i)->cd_info["string_composer"] << "\"" << endl;
+ if ((*i)->cd_info.find("composer") != (*i)->cd_info.end()) {
+ out << " SONGWRITER \"" << (*i)->cd_info["composer"] << "\"" << endl;
}
/* only print "Index 00" if not at the same position as "Index 01" */