diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-21 22:25:43 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-21 22:25:43 +0000 |
| commit | fe8251bb73765b459042b0fa841dae2d440487fd (patch) | |
| tree | 9a8cbd162915c2e6e4cf868cfc0321bfb1a44ffd /src/tools | |
| parent | f67bc45820b4e56f90eecb97ba3b7762c119f9b5 (diff) | |
Remove Film pointer from clone().
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 15c4363ee..1a87a2872 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -595,7 +595,7 @@ private: { ContentList const sel = _film_editor->content_panel()->selected(); DCPOMATIC_ASSERT (sel.size() == 1); - _clipboard = sel.front()->clone(_film); + _clipboard = sel.front()->clone(); } void edit_paste () |
