diff options
Diffstat (limited to 'src/wx/timeline.cc')
| -rw-r--r-- | src/wx/timeline.cc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index ef8549d42..6bb216df8 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -40,7 +40,6 @@ #include <wx/graphics.h> #include <boost/weak_ptr.hpp> #include <boost/foreach.hpp> -#include <boost/make_shared.hpp> #include <list> #include <iostream> @@ -48,7 +47,6 @@ using std::list; using std::cout; using std::max; using boost::shared_ptr; -using boost::make_shared; using boost::weak_ptr; using boost::dynamic_pointer_cast; using boost::bind; @@ -152,19 +150,19 @@ Timeline::recreate_views () BOOST_FOREACH (shared_ptr<Content> i, film->content ()) { if (i->video) { - _views.push_back (make_shared<TimelineVideoContentView> (*this, i)); + _views.push_back (shared_ptr<TimelineView> (new TimelineVideoContentView (*this, i))); } if (i->audio && !i->audio->mapping().mapped_output_channels().empty ()) { - _views.push_back (make_shared<TimelineAudioContentView> (*this, i)); + _views.push_back (shared_ptr<TimelineView> (new TimelineAudioContentView (*this, i))); } if (i->subtitle) { - _views.push_back (make_shared<TimelineSubtitleContentView> (*this, i)); + _views.push_back (shared_ptr<TimelineView> (new TimelineSubtitleContentView (*this, i))); } if (dynamic_pointer_cast<AtmosMXFContent> (i)) { - _views.push_back (make_shared<TimelineAtmosContentView> (*this, i)); + _views.push_back (shared_ptr<TimelineView> (new TimelineAtmosContentView (*this, i))); } } |
