Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / timeline_text_content_view.h
index 055c841438ca49f0cc8ec58936a32ab970195563..046f5b3e66ca9d5a288a53369bb81a0e49c28068 100644 (file)
@@ -29,12 +29,12 @@ class TextContent;
 class TimelineTextContentView : public TimelineContentView
 {
 public:
-       TimelineTextContentView (Timeline& tl, boost::shared_ptr<Content>, boost::shared_ptr<TextContent>);
+       TimelineTextContentView (Timeline& tl, std::shared_ptr<Content>, std::shared_ptr<TextContent>);
 
 private:
-       bool active () const;
-       wxColour background_colour () const;
-       wxColour foreground_colour () const;
+       bool active () const override;
+       wxColour background_colour () const override;
+       wxColour foreground_colour () const override;
 
-       boost::shared_ptr<TextContent> _caption;
+       std::shared_ptr<TextContent> _caption;
 };