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.cc | |
| parent | 7dad3914a40ba78b8a1964a0b27f88da0ff802d7 (diff) | |
Fix missed overload change.
Diffstat (limited to 'src/wx/timeline.cc')
| -rw-r--r-- | src/wx/timeline.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc index 206c13cf6..f15c06d38 100644 --- a/src/wx/timeline.cc +++ b/src/wx/timeline.cc @@ -531,7 +531,7 @@ Timeline::left_down_select (wxMouseEvent& ev) _start_snaps.push_back (cv->content()->end(film)); _end_snaps.push_back (cv->content()->end(film)); - BOOST_FOREACH (DCPTime i, cv->content()->reel_split_points()) { + BOOST_FOREACH (DCPTime i, cv->content()->reel_split_points(film)) { _start_snaps.push_back (i); } } |
