summaryrefslogtreecommitdiff
path: root/src/wx/video_waveform_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-10 22:02:09 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-11 11:58:15 +0100
commit23583dfb56181c76126e652042e9d1940367aa27 (patch)
treee4e0711ea1b132aacee524e54014497ece5e9916 /src/wx/video_waveform_dialog.h
parent2a0ad7979b208f84916b13f7a37998aa3701e371 (diff)
Partial split of film viewer.
Diffstat (limited to 'src/wx/video_waveform_dialog.h')
-rw-r--r--src/wx/video_waveform_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/video_waveform_dialog.h b/src/wx/video_waveform_dialog.h
index aa134f7a5..1cfbb73b7 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 FilmViewer;
+class ControlFilmViewer;
class Film;
class VideoWaveformDialog : public wxDialog
{
public:
- VideoWaveformDialog (wxWindow* parent, boost::weak_ptr<const Film> film, FilmViewer* viewer);
+ VideoWaveformDialog (wxWindow* parent, boost::weak_ptr<const Film> film, ControlFilmViewer* viewer);
private:
void shown (wxShowEvent &);
@@ -36,7 +36,7 @@ private:
void contrast_changed ();
void mouse_moved (int x1, int x2, int y1, int y2);
- FilmViewer* _viewer;
+ ControlFilmViewer* _viewer;
VideoWaveformPlot* _plot;
wxChoice* _component;
wxSlider* _contrast;