From 5384418af0299194ecf3e27fd2e443e7d882a713 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 25 Aug 2013 13:34:52 +0100 Subject: Tidy up interop API. --- src/dcp.cc | 2 +- src/dcp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/dcp.cc b/src/dcp.cc index 1658200b..30a3c3a4 100644 --- a/src/dcp.cc +++ b/src/dcp.cc @@ -64,7 +64,7 @@ DCP::DCP (string directory) } void -DCP::write_xml (XMLMetadata const & metadata, bool interop, shared_ptr crypt) const +DCP::write_xml (bool interop, XMLMetadata const & metadata, shared_ptr crypt) const { for (list >::const_iterator i = _cpls.begin(); i != _cpls.end(); ++i) { (*i)->write_xml (interop, metadata, crypt); diff --git a/src/dcp.h b/src/dcp.h index 60faeb73..d6237e8a 100644 --- a/src/dcp.h +++ b/src/dcp.h @@ -78,7 +78,7 @@ public: /** Write the required XML files to the directory that was * passed into the constructor. */ - void write_xml (XMLMetadata const &, bool interop = false, boost::shared_ptr crypt = boost::shared_ptr ()) const; + void write_xml (bool interop, XMLMetadata const &, boost::shared_ptr crypt = boost::shared_ptr ()) const; /** Compare this DCP with another, according to various options. * @param other DCP to compare this one to. -- cgit v1.2.3