From e351591c14fffc4a062ffcf66334840214acbf83 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 4 Nov 2008 20:58:11 +0000 Subject: [PATCH] TOC file quote fix from Don Fredricks git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4096 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/export_dialog.cc | 4 ++-- 1 file 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) {