diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-11-02 00:18:56 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-11-02 01:17:53 +0100 |
| commit | b39dbb7cf1b0352cf0eb3af4bf4929556355bff5 (patch) | |
| tree | e679b163406b863dbbc04c4635393973b33929ec /src/wx/audio_panel.h | |
| parent | 9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff) | |
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/audio_panel.h')
| -rw-r--r-- | src/wx/audio_panel.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/wx/audio_panel.h b/src/wx/audio_panel.h index e3a294955..bd6e0163d 100644 --- a/src/wx/audio_panel.h +++ b/src/wx/audio_panel.h @@ -19,19 +19,20 @@ */ -#include "lib/audio_mapping.h" #include "content_sub_panel.h" #include "content_widget.h" #include "timecode.h" +#include "lib/audio_mapping.h" -class wxSpinCtrlDouble; +class AudioDialog; +class AudioMappingView; +class CheckBox; +class LanguageTagWidget; class wxButton; class wxChoice; +class wxSpinCtrlDouble; class wxStaticText; -class AudioMappingView; -class AudioDialog; -class LanguageTagWidget; class AudioPanel : public ContentSubPanel @@ -61,7 +62,7 @@ private: void fade_out_changed (); void use_same_fades_as_video_changed (); - wxCheckBox* _reference; + CheckBox* _reference; wxStaticText* _reference_note; wxButton* _show; wxStaticText* _gain_label; @@ -76,7 +77,7 @@ private: Timecode<dcpomatic::ContentTime>* _fade_in; wxStaticText* _fade_out_label; Timecode<dcpomatic::ContentTime>* _fade_out; - wxCheckBox* _use_same_fades_as_video; + CheckBox* _use_same_fades_as_video; AudioMappingView* _mapping; wxStaticText* _description; AudioDialog* _audio_dialog = nullptr; |
