summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/cpl.cc2
-rw-r--r--src/parse/cpl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/parse/cpl.cc b/src/parse/cpl.cc
index f6ce434c..8184c57b 100644
--- a/src/parse/cpl.cc
+++ b/src/parse/cpl.cc
@@ -31,7 +31,7 @@ using std::bad_cast;
using boost::shared_ptr;
using namespace libdcp::parse;
-CPL::CPL (string file)
+CPL::CPL (boost::filesystem::path file)
{
cxml::Document f ("CompositionPlaylist");
f.read_file (file);
diff --git a/src/parse/cpl.h b/src/parse/cpl.h
index 04bf9351..4e798e37 100644
--- a/src/parse/cpl.h
+++ b/src/parse/cpl.h
@@ -145,7 +145,7 @@ class CPL
{
public:
/** Parse a CPL XML file into our member variables */
- CPL (std::string file);
+ CPL (boost::filesystem::path file);
std::string id;
std::string annotation_text;