summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-04 20:58:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-04 20:58:11 +0000
commite351591c14fffc4a062ffcf66334840214acbf83 (patch)
treeb7fe042abf998588c64bf62b5384168d24c4265b /gtk2_ardour/export_dialog.cc
parent200d7baff72b377ab2fd7c4c838c87d839b108e2 (diff)
TOC file quote fix from Don Fredricks
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4096 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index e7c297e6ee..5faae9969f 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -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) {