summaryrefslogtreecommitdiff
path: root/src/reel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-08-29 12:19:28 +0100
committerCarl Hetherington <cth@carlh.net>2013-08-29 12:19:28 +0100
commitd697e7bedb1e42f5167c92fd9ab363f496d718f5 (patch)
treef4d5fd9ff280cc24373315045a26183eecaf78ba /src/reel.cc
parent01ee80bda7dad42809407a0c94bc542f560c363e (diff)
Try to fix application of namespace to MainStereoscopicPicture nodes.
Diffstat (limited to 'src/reel.cc')
-rw-r--r--src/reel.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reel.cc b/src/reel.cc
index 3b49042a..43c934ea 100644
--- a/src/reel.cc
+++ b/src/reel.cc
@@ -32,11 +32,11 @@ using boost::shared_ptr;
using namespace libdcp;
void
-Reel::write_to_cpl (xmlpp::Node* node, bool interop) const
+Reel::write_to_cpl (xmlpp::Element* node, bool interop) const
{
- xmlpp::Node* reel = node->add_child ("Reel");
+ xmlpp::Element* reel = node->add_child ("Reel");
reel->add_child("Id")->add_child_text ("urn:uuid:" + make_uuid());
- xmlpp::Node* asset_list = reel->add_child ("AssetList");
+ xmlpp::Element* asset_list = reel->add_child ("AssetList");
if (_main_picture) {
_main_picture->write_to_cpl (asset_list, interop);