std::shared_ptr
[dcpomatic.git] / src / wx / timeline_view.h
index f0ded7bce1583c8478f3c663f95036448f0e1e29..bfd1de8b752a9e7fb84915355484c87a9d2f8265 100644 (file)
@@ -45,7 +45,7 @@ public:
 protected:
        virtual void do_paint (wxGraphicsContext *, std::list<dcpomatic::Rect<int> > overlaps) = 0;
 
-       int time_x (DCPTime t) const;
+       int time_x (dcpomatic::DCPTime t) const;
 
        Timeline& _timeline;
 
@@ -53,6 +53,6 @@ private:
        dcpomatic::Rect<int> _last_paint_bbox;
 };
 
-typedef std::vector<boost::shared_ptr<TimelineView> > TimelineViewList;
+typedef std::vector<std::shared_ptr<TimelineView> > TimelineViewList;
 
 #endif