summaryrefslogtreecommitdiff
path: root/libs/ardour/export_handler.cc
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-18 22:33:25 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2014-05-18 22:34:04 +0100
commitba08ae96419d0605eb05921a7428173f48f0fbe0 (patch)
treeb2c093ed4f279c52a04d904e11c229ad07a4abd2 /libs/ardour/export_handler.cc
parent7c4259133d4ca965f7aed5cbb419d75125de6bef (diff)
Use ARDOUR namespace for SystemExec
Explicitly use ARDOUR::SystemExec, and #include the right header for it too.
Diffstat (limited to 'libs/ardour/export_handler.cc')
-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