Fix failure to remove markers when the checkbox is unticked.
[dcpomatic.git] / src / wx / timeline_video_content_view.h
index d53d43f35aba6f7c821f93a692fe423e666875e3..fa8ddf54c736ceebeb099eddefdb68079850fa7b 100644 (file)
 
 */
 
+
 #include "timeline_content_view.h"
 
+
 /** @class TimelineVideoContentView
  *  @brief Timeline view for VideoContent.
  */
 class TimelineVideoContentView : public TimelineContentView
 {
 public:
-       TimelineVideoContentView (Timeline& tl, boost::shared_ptr<Content> c);
+       TimelineVideoContentView (Timeline& tl, std::shared_ptr<Content> c);
 
 private:
-       bool active () const {
-               return true;
-       }
-       wxColour background_colour () const;
-       wxColour foreground_colour () const;
+       bool active () const override;
+       wxColour background_colour () const override;
+       wxColour foreground_colour () const override;
 };