From a22dd8c20a656a36d93e3e31ee3c04ca7e9b7278 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Sat, 23 Jun 2012 05:07:49 +0000 Subject: Move PBD::sys::copy_file/s into pbd/file_utils.h and PBD:: namespace Copy files no longer depends on PBD::sys::path so move it git-svn-id: svn://localhost/ardour2/branches/3.0@12853 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/export_graph_builder.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/export_graph_builder.cc') diff --git a/libs/ardour/export_graph_builder.cc b/libs/ardour/export_graph_builder.cc index fbb5d0f98a..5061bcecfd 100644 --- a/libs/ardour/export_graph_builder.cc +++ b/libs/ardour/export_graph_builder.cc @@ -18,7 +18,7 @@ #include "ardour/export_timespan.h" #include "ardour/sndfile_helpers.h" -#include "pbd/filesystem.h" +#include "pbd/file_utils.h" #include "pbd/cpus.h" using namespace AudioGrapher; @@ -216,7 +216,7 @@ ExportGraphBuilder::Encoder::copy_files (std::string orig_path) { while (filenames.size()) { ExportFilenamePtr & filename = filenames.front(); - PBD::sys::copy_file (orig_path, filename->get_path (config.format).c_str()); + PBD::copy_file (orig_path, filename->get_path (config.format).c_str()); filenames.pop_front(); } } -- cgit v1.2.3