summaryrefslogtreecommitdiff
path: root/src/wx/audio_plot.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-10-12 01:03:28 +0200
committerCarl Hetherington <cth@carlh.net>2022-10-14 11:41:18 +0200
commit449f383f13e5755c523db11f9adef53b58391025 (patch)
tree7751c6ede10455de02aa85dcd00d17109c9d57a6 /src/wx/audio_plot.h
parent5e640ac3e2f6d5fb079ff65659a1483ddac8672e (diff)
Cleanup: use simpler ownership for FilmViewer.
Diffstat (limited to 'src/wx/audio_plot.h')
-rw-r--r--src/wx/audio_plot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/audio_plot.h b/src/wx/audio_plot.h
index b2ffd5ad5..8755053f5 100644
--- a/src/wx/audio_plot.h
+++ b/src/wx/audio_plot.h
@@ -33,7 +33,7 @@ class FilmViewer;
class AudioPlot : public wxPanel
{
public:
- explicit AudioPlot (wxWindow *, std::weak_ptr<FilmViewer> viewer);
+ explicit AudioPlot (wxWindow *, FilmViewer& viewer);
void set_analysis (std::shared_ptr<AudioAnalysis>);
void set_channel_visible (int c, bool v);
@@ -77,7 +77,7 @@ private:
void mouse_moved (wxMouseEvent& ev);
void mouse_leave (wxMouseEvent& ev);
- std::weak_ptr<FilmViewer> _viewer;
+ FilmViewer& _viewer;
std::shared_ptr<AudioAnalysis> _analysis;
bool _channel_visible[MAX_DCP_AUDIO_CHANNELS];
bool _type_visible[AudioPoint::COUNT];