X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Flib%2Fdcp_subtitle_content.cc;h=b361b941907551b160913bbe4121d872c8187661;hb=5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f;hp=e7057efc4b59528585e77965d88233d52275cf7b;hpb=4e83acad0c2a5c528709a175a80261b8147d3b49;p=dcpomatic.git diff --git a/src/lib/dcp_subtitle_content.cc b/src/lib/dcp_subtitle_content.cc index e7057efc4..b361b9419 100644 --- a/src/lib/dcp_subtitle_content.cc +++ b/src/lib/dcp_subtitle_content.cc @@ -28,6 +28,7 @@ #include #include #include +#include #include "i18n.h" @@ -35,6 +36,7 @@ using std::string; using std::list; using boost::shared_ptr; using boost::dynamic_pointer_cast; +using boost::make_shared; DCPSubtitleContent::DCPSubtitleContent (shared_ptr film, boost::filesystem::path path) : Content (film, path) @@ -76,7 +78,7 @@ DCPSubtitleContent::examine (shared_ptr job) _length = ContentTime::from_seconds (sc->latest_subtitle_out().as_seconds ()); BOOST_FOREACH (shared_ptr i, sc->load_font_nodes ()) { - subtitle->add_font (shared_ptr (new Font (i->id))); + subtitle->add_font (boost::make_shared (i->id)); } }