diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-10 22:02:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-11 11:58:15 +0100 |
| commit | 23583dfb56181c76126e652042e9d1940367aa27 (patch) | |
| tree | e4e0711ea1b132aacee524e54014497ece5e9916 /src/tools/dcpomatic.cc | |
| parent | 2a0ad7979b208f84916b13f7a37998aa3701e371 (diff) | |
Partial split of film viewer.
Diffstat (limited to 'src/tools/dcpomatic.cc')
| -rw-r--r-- | src/tools/dcpomatic.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 330935ba2..7392c830c 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -22,7 +22,7 @@ * @brief The main DCP-o-matic GUI. */ -#include "wx/film_viewer.h" +#include "wx/control_film_viewer.h" #include "wx/film_editor.h" #include "wx/job_manager_view.h" #include "wx/full_config_dialog.h" @@ -317,7 +317,7 @@ public: */ wxPanel* overall_panel = new wxPanel (this, wxID_ANY); - _film_viewer = new FilmViewer (overall_panel); + _film_viewer = new ControlFilmViewer (overall_panel); _film_editor = new FilmEditor (overall_panel, _film_viewer); JobManagerView* job_manager_view = new JobManagerView (overall_panel, false); @@ -1307,7 +1307,7 @@ private: } FilmEditor* _film_editor; - FilmViewer* _film_viewer; + ControlFilmViewer* _film_viewer; VideoWaveformDialog* _video_waveform_dialog; HintsDialog* _hints_dialog; ServersListDialog* _servers_list_dialog; |
