13
0

Use std::string instead of sys::path in Session::jack_session_event

git-svn-id: svn://localhost/ardour2/branches/3.0@12895 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Tim Mayberry 2012-06-23 05:09:28 +00:00
parent dbd5a4e002
commit 1dadaf3e05

View File

@ -722,13 +722,14 @@ Session::jack_session_event (jack_session_event_t * event)
if (save_state (timebuf)) {
event->flags = JackSessionSaveError;
} else {
sys::path xml_path (_session_dir->root_path());
xml_path /= legalize_for_path (timebuf) + statefile_suffix;
std::string xml_path (_session_dir->root_path());
std::string legalized_filename = legalize_for_path (timebuf) + statefile_suffix;
xml_path = Glib::build_filename (xml_path, legalized_filename);
string cmd ("ardour3 -P -U ");
cmd += event->client_uuid;
cmd += " \"";
cmd += xml_path.to_string();
cmd += xml_path;
cmd += '\"';
event->command_line = strdup (cmd.c_str());