diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-24 00:34:03 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-24 00:34:03 +0000 |
| commit | 08aed48d141f403a93640cf62d8be70161bd1d30 (patch) | |
| tree | cb8e9bb77e26152ca13d2cb20a62ab9c8221cfc1 /src/wx/timeline_content_view.cc | |
| parent | 7dad3914a40ba78b8a1964a0b27f88da0ff802d7 (diff) | |
Fix missed overload change.
Diffstat (limited to 'src/wx/timeline_content_view.cc')
| -rw-r--r-- | src/wx/timeline_content_view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline_content_view.cc b/src/wx/timeline_content_view.cc index 69f1723ce..a55526c88 100644 --- a/src/wx/timeline_content_view.cc +++ b/src/wx/timeline_content_view.cc @@ -127,7 +127,7 @@ TimelineContentView::do_paint (wxGraphicsContext* gc, list<dcpomatic::Rect<int> /* Reel split points */ gc->SetPen (*wxThePenList->FindOrCreatePen (foreground_colour(), 1, wxPENSTYLE_DOT)); - BOOST_FOREACH (DCPTime i, cont->reel_split_points ()) { + BOOST_FOREACH (DCPTime i, cont->reel_split_points(film)) { path = gc->CreatePath (); path.MoveToPoint (time_x (i), y_pos (_track.get()) + 4); path.AddLineToPoint (time_x (i), y_pos (_track.get() + 1) - 4); |
