From ba08ae96419d0605eb05921a7428173f48f0fbe0 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Sun, 18 May 2014 22:33:25 +0100 Subject: [PATCH] Use ARDOUR namespace for SystemExec Explicitly use ARDOUR::SystemExec, and #include the right header for it too. --- libs/ardour/export_handler.cc | 4 ++-- 1 file 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