From df17bbd25da69fc38eb2dcd8b4a2531cf0bab0bc Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 23 Jul 2018 11:20:12 +0100 Subject: More automated renaming. ActiveCaptions -> ActiveText BitmapCaption -> BitmapText ContentCaption -> ContentText ContentTextCaption -> ContentStringText TextCaptionFileContent -> StringTextFileContent TextCaptionFileDecoder -> StringTextFileDecoder TextCaptionFile -> StringTextFile TextCaption -> StringText PlayerCaption -> PlayerText CaptionContent -> TextContent CaptionDecoder -> TextDecoder CaptionPanel -> TextPanel CaptionView -> TextView CaptionAppearanceDialog -> SubtitleAppearanceDialog CaptionType -> TextType --- src/lib/content.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/lib/content.cc') diff --git a/src/lib/content.cc b/src/lib/content.cc index 629672b73..7a8088289 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -27,7 +27,7 @@ #include "content_factory.h" #include "video_content.h" #include "audio_content.h" -#include "caption_content.h" +#include "text_content.h" #include "exceptions.h" #include "film.h" #include "job.h" @@ -437,8 +437,8 @@ Content::take_settings_from (shared_ptr c) audio->take_settings_from (c->audio); } - list >::iterator i = caption.begin (); - list >::const_iterator j = c->caption.begin (); + list >::iterator i = caption.begin (); + list >::const_iterator j = c->caption.begin (); while (i != caption.end() && j != c->caption.end()) { (*i)->take_settings_from (*j); ++i; @@ -446,24 +446,24 @@ Content::take_settings_from (shared_ptr c) } } -shared_ptr +shared_ptr Content::only_caption () const { DCPOMATIC_ASSERT (caption.size() < 2); if (caption.empty ()) { - return shared_ptr (); + return shared_ptr (); } return caption.front (); } -shared_ptr -Content::caption_of_original_type (CaptionType type) const +shared_ptr +Content::caption_of_original_type (TextType type) const { - BOOST_FOREACH (shared_ptr i, caption) { + BOOST_FOREACH (shared_ptr i, caption) { if (i->original_type() == type) { return i; } } - return shared_ptr (); + return shared_ptr (); } -- cgit v1.2.3