No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / content_factory.cc
index f4d9fe4e93f7734679a7e9145af58a227f8fb37b..3c65b43129a14a23d62628a8f14a1911495b4ec8 100644 (file)
@@ -29,7 +29,7 @@
 #include "dcp_subtitle_content.h"
 #include "util.h"
 #include <libcxml/cxml.h>
-#include <dcp/smpte_subtitle_content.h>
+#include <dcp/smpte_subtitle_asset.h>
 
 using std::string;
 using std::list;
@@ -48,7 +48,7 @@ content_factory (shared_ptr<const Film> film, cxml::NodePtr node, int version, l
        string const type = node->string_child ("Type");
 
        boost::shared_ptr<Content> content;
-       
+
        if (type == "FFmpeg") {
                content.reset (new FFmpegContent (film, node, version, notes));
        } else if (type == "Image") {
@@ -87,7 +87,7 @@ content_factory (shared_ptr<const Film> film, boost::filesystem::path path)
                content.reset (new SubRipContent (film, path));
        } else if (ext == ".xml") {
                content.reset (new DCPSubtitleContent (film, path));
-       } else if (ext == ".mxf" && dcp::SMPTESubtitleContent::valid_mxf (path)) {
+       } else if (ext == ".mxf" && dcp::SMPTESubtitleAsset::valid_mxf (path)) {
                content.reset (new DCPSubtitleContent (film, path));
        }