diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-12 01:03:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-14 11:41:18 +0200 |
| commit | 449f383f13e5755c523db11f9adef53b58391025 (patch) | |
| tree | 7751c6ede10455de02aa85dcd00d17109c9d57a6 /src/wx/text_view.h | |
| parent | 5e640ac3e2f6d5fb079ff65659a1483ddac8672e (diff) | |
Cleanup: use simpler ownership for FilmViewer.
Diffstat (limited to 'src/wx/text_view.h')
| -rw-r--r-- | src/wx/text_view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/text_view.h b/src/wx/text_view.h index f8aba8ffd..8cf3c78bb 100644 --- a/src/wx/text_view.h +++ b/src/wx/text_view.h @@ -38,7 +38,7 @@ public: std::shared_ptr<Content> content, std::shared_ptr<TextContent> caption, std::shared_ptr<Decoder>, - std::weak_ptr<FilmViewer> viewer + FilmViewer& viewer ); private: @@ -52,5 +52,5 @@ private: boost::optional<int> _last_count; std::vector<dcpomatic::ContentTime> _start_times; std::weak_ptr<Content> _content; - std::weak_ptr<FilmViewer> _film_viewer; + FilmViewer& _film_viewer; }; |
