diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc index 96e8052bf4..c36a6da0c7 100644 --- a/libs/ardour/export_handler.cc +++ b/libs/ardour/export_handler.cc @@ -355,7 +355,7 @@ ExportHandler::finish_timespan () subs.insert (std::pair ('n', session.name ())); ARDOUR::SystemExec *se = new ARDOUR::SystemExec(fmt->command(), subs); - info << "Post-export command line : {" << se->GetString() << "}" << endmsg; + info << "Post-export command line : {" << se->to_s () << "}" << endmsg; se->ReadStdout.connect_same_thread(command_connection, boost::bind(&ExportHandler::command_output, this, _1, _2)); int ret = se->start (2); if (ret == 0) { diff --git a/libs/pbd/pbd/system_exec.h b/libs/pbd/pbd/system_exec.h index 07f7d139a7..d5b14c8273 100644 --- a/libs/pbd/pbd/system_exec.h +++ b/libs/pbd/pbd/system_exec.h @@ -115,7 +115,7 @@ class LIBPBD_API SystemExec virtual ~SystemExec (); - std::string GetString(); + std::string to_s() const; /** fork and execute the given program * diff --git a/libs/pbd/system_exec.cc b/libs/pbd/system_exec.cc index fc66e1f6e4..a19e873da2 100644 --- a/libs/pbd/system_exec.cc +++ b/libs/pbd/system_exec.cc @@ -282,18 +282,6 @@ SystemExec::make_argp_escaped(std::string command, const std::map