summaryrefslogtreecommitdiff
path: root/src/subtitle_asset.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/subtitle_asset.cc')
-rw-r--r--src/subtitle_asset.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/subtitle_asset.cc b/src/subtitle_asset.cc
index d67e3625..fcc8bac0 100644
--- a/src/subtitle_asset.cc
+++ b/src/subtitle_asset.cc
@@ -37,14 +37,14 @@ using boost::optional;
using namespace dcp;
SubtitleAsset::SubtitleAsset (string directory, string xml_file)
- : Asset (directory, xml_file)
+ : ContentAsset (directory, xml_file)
, _need_sort (false)
{
read_xml (path().string());
}
SubtitleAsset::SubtitleAsset (string directory, string movie_title, string language)
- : Asset (directory)
+ : ContentAsset (directory)
, _movie_title (movie_title)
, _reel_number ("1")
, _language (language)