diff options
Diffstat (limited to 'src/lib/content_text.h')
| -rw-r--r-- | src/lib/content_text.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/content_text.h b/src/lib/content_text.h index eaba64ecf..1b550c96d 100644 --- a/src/lib/content_text.h +++ b/src/lib/content_text.h @@ -51,10 +51,10 @@ private: TextType _type; }; -class ContentBitmapText : public ContentText +class ContentBitmapCaption : public ContentText { public: - ContentBitmapText (ContentTime f, TextType type, boost::shared_ptr<Image> im, dcpomatic::Rect<double> r) + ContentBitmapCaption (ContentTime f, TextType type, boost::shared_ptr<Image> im, dcpomatic::Rect<double> r) : ContentText (f, type) , sub (im, r) {} @@ -67,10 +67,10 @@ public: * as the dcp::SubtitleString timings are sometimes quite heavily quantised and this causes problems * when we want to compare the quantised periods to the unquantised ones. */ -class ContentPlainText : public ContentText +class ContentTextCaption : public ContentText { public: - ContentPlainText (ContentTime f, TextType type, std::list<dcp::SubtitleString> s) + ContentTextCaption (ContentTime f, TextType type, std::list<dcp::SubtitleString> s) : ContentText (f, type) , subs (s) {} |
