From 8fedaaa75c4586a4cc7ffb393bd71d1fdb091dc8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 31 Jan 2021 03:14:24 +0100 Subject: More enum class additions. --- src/lib/string_text_file_content.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/lib/string_text_file_content.cc') diff --git a/src/lib/string_text_file_content.cc b/src/lib/string_text_file_content.cc index 2bf416110..01e0fe60f 100644 --- a/src/lib/string_text_file_content.cc +++ b/src/lib/string_text_file_content.cc @@ -33,6 +33,7 @@ using std::string; using std::cout; using std::shared_ptr; +using std::make_shared; using boost::optional; using dcp::raw_convert; using namespace dcpomatic; @@ -40,7 +41,7 @@ using namespace dcpomatic; StringTextFileContent::StringTextFileContent (boost::filesystem::path path) : Content (path) { - text.push_back (shared_ptr (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_UNKNOWN))); + text.push_back (shared_ptr (new TextContent (this, TextType::OPEN_SUBTITLE, TextType::UNKNOWN))); } StringTextFileContent::StringTextFileContent (cxml::ConstNodePtr node, int version) @@ -61,7 +62,7 @@ StringTextFileContent::examine (shared_ptr film, shared_ptr job boost::mutex::scoped_lock lm (_mutex); _length = s.length (); - only_text()->add_font (shared_ptr (new Font (TEXT_FONT_ID))); + only_text()->add_font (make_shared(TEXT_FONT_ID)); } string -- cgit v1.2.3