summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/export_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 01f5c989d3..4bf3571f53 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -33,9 +33,9 @@
#include "ardour/export_format_specification.h"
#include "ardour/export_filename.h"
#include "ardour/soundcloud_upload.h"
+#include "ardour/system_exec.h"
#include "pbd/openuri.h"
#include "pbd/basename.h"
-#include "pbd/system_exec.h"
#include "ardour/session_metadata.h"
#include "i18n.h"
@@ -329,7 +329,7 @@ ExportHandler::finish_timespan ()
std::cerr << "running command: " << fmt->command() << "..." << std::endl;
- SystemExec *se = new SystemExec(fmt->command(), subs);
+ ARDOUR::SystemExec *se = new ARDOUR::SystemExec(fmt->command(), subs);
se->ReadStdout.connect_same_thread(command_connection, boost::bind(&ExportHandler::command_output, this, _1, _2));
if (se->start (2) == 0) {
// successfully started