diff options
Diffstat (limited to 'src/wx/timeline_view.cc')
| -rw-r--r-- | src/wx/timeline_view.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/wx/timeline_view.cc b/src/wx/timeline_view.cc index fee1921ed..d96b8998f 100644 --- a/src/wx/timeline_view.cc +++ b/src/wx/timeline_view.cc @@ -20,6 +20,8 @@ #include "timeline_view.h" #include "timeline.h" +using std::list; + /** @class TimelineView * @brief Parent class for components of the timeline (e.g. a piece of content or an axis). */ @@ -30,10 +32,10 @@ TimelineView::TimelineView (Timeline& t) } void -TimelineView::paint (wxGraphicsContext* g) +TimelineView::paint (wxGraphicsContext* g, list<dcpomatic::Rect<int> > overlaps) { _last_paint_bbox = bbox (); - do_paint (g); + do_paint (g, overlaps); } void |
