summaryrefslogtreecommitdiff
path: root/src/wx/config_dialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/config_dialog.h')
-rw-r--r--src/wx/config_dialog.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h
index e0d7f15b8..5f2e02c23 100644
--- a/src/wx/config_dialog.h
+++ b/src/wx/config_dialog.h
@@ -50,6 +50,7 @@ LIBDCP_ENABLE_WARNINGS
class AudioMappingView;
class CheckBox;
+class FilmViewer;
class Page : public wxPreferencesPage
@@ -189,8 +190,9 @@ private:
class SoundPage : public Page
{
public:
- SoundPage (wxSize panel_size, int border)
+ SoundPage(wxSize panel_size, int border, FilmViewer* viewer)
: Page (panel_size, border)
+ , _viewer(viewer)
{}
wxString GetName() const override;
@@ -218,6 +220,7 @@ private:
wxStaticText* _sound_output_details;
AudioMappingView* _map;
Button* _reset_to_default;
+ FilmViewer* _viewer;
};