std::shared_ptr
[dcpomatic.git] / src / wx / timeline_text_content_view.h
index 055c841438ca49f0cc8ec58936a32ab970195563..98aea6316accce2b5ff12656db1faf491be94c80 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;
 
-       boost::shared_ptr<TextContent> _caption;
+       std::shared_ptr<TextContent> _caption;
 };