diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-07-23 16:42:28 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-07-23 16:42:28 +0100 |
| commit | 24dcab1d4d8d7a28a939c7c4d786197684f155f6 (patch) | |
| tree | cdd795a6caff66d17e35ed97fbb8b8d39f4fe9fc /src/lib/dcp_subtitle_content.cc | |
| parent | a5c629cb9b638b67a0e4c2d26fe9ab2e124bf0eb (diff) | |
Introduce the idea of unknown original subtitle type to clean up the GUI a bit.
Diffstat (limited to 'src/lib/dcp_subtitle_content.cc')
| -rw-r--r-- | src/lib/dcp_subtitle_content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcp_subtitle_content.cc b/src/lib/dcp_subtitle_content.cc index 5acc51ac4..a8e98d426 100644 --- a/src/lib/dcp_subtitle_content.cc +++ b/src/lib/dcp_subtitle_content.cc @@ -40,7 +40,7 @@ using dcp::raw_convert; DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, boost::filesystem::path path) : Content (film, path) { - text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE))); + text.push_back (shared_ptr<TextContent> (new TextContent (this, TEXT_OPEN_SUBTITLE, TEXT_OPEN_SUBTITLE))); } DCPSubtitleContent::DCPSubtitleContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version) |
