Basic template support (#485).
[dcpomatic.git] / src / lib / playlist.cc
index a8b5a26ebbc0c4e91a9385d2aa67b5a724cf9bb2..a30dde633cde3120bc29cdc2b762e3c723f802de 100644 (file)
@@ -175,10 +175,10 @@ Playlist::set_from_xml (shared_ptr<const Film> film, cxml::ConstNodePtr node, in
 
 /** @param node <Playlist> node */
 void
-Playlist::as_xml (xmlpp::Node* node)
+Playlist::as_xml (xmlpp::Node* node, bool with_content_paths)
 {
        BOOST_FOREACH (shared_ptr<Content> i, _content) {
-               i->as_xml (node->add_child ("Content"));
+               i->as_xml (node->add_child ("Content"), with_content_paths);
        }
 }