Add FilmViewer::time_until_next_frame.
[dcpomatic.git] / src / wx / timeline_text_content_view.cc
index 30158941c2fe711536ebde5ed9d7feafd8675e12..1345ea5e49457950f4abea14fc9ef571285dfa7d 100644 (file)
 */
 
 #include "timeline_text_content_view.h"
-#include "lib/caption_content.h"
+#include "lib/text_content.h"
 #include "lib/content.h"
 
 using boost::shared_ptr;
 
-TimelineTextContentView::TimelineTextContentView (Timeline& tl, shared_ptr<Content> c, shared_ptr<CaptionContent> caption)
+TimelineTextContentView::TimelineTextContentView (Timeline& tl, shared_ptr<Content> c, shared_ptr<TextContent> caption)
        : TimelineContentView (tl, c)
        , _caption (caption)
 {
@@ -54,7 +54,5 @@ TimelineTextContentView::foreground_colour () const
 bool
 TimelineTextContentView::active () const
 {
-       shared_ptr<Content> c = _content.lock ();
-       DCPOMATIC_ASSERT (c);
        return _caption->use();
 }