diff options
Diffstat (limited to 'src/wx/video_waveform_dialog.h')
| -rw-r--r-- | src/wx/video_waveform_dialog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/video_waveform_dialog.h b/src/wx/video_waveform_dialog.h index 1cfbb73b7..ac3a72dde 100644 --- a/src/wx/video_waveform_dialog.h +++ b/src/wx/video_waveform_dialog.h @@ -22,13 +22,13 @@ #include <boost/weak_ptr.hpp> class VideoWaveformPlot; -class ControlFilmViewer; +class FilmViewer; class Film; class VideoWaveformDialog : public wxDialog { public: - VideoWaveformDialog (wxWindow* parent, boost::weak_ptr<const Film> film, ControlFilmViewer* viewer); + VideoWaveformDialog (wxWindow* parent, boost::weak_ptr<const Film> film, boost::weak_ptr<FilmViewer> viewer); private: void shown (wxShowEvent &); @@ -36,7 +36,7 @@ private: void contrast_changed (); void mouse_moved (int x1, int x2, int y1, int y2); - ControlFilmViewer* _viewer; + boost::weak_ptr<FilmViewer> _viewer; VideoWaveformPlot* _plot; wxChoice* _component; wxSlider* _contrast; |
