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/dcp_panel.h | |
| parent | 9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff) | |
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/dcp_panel.h')
| -rw-r--r-- | src/wx/dcp_panel.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/dcp_panel.h b/src/wx/dcp_panel.h index 31d58e1f8..7d7f0bd79 100644 --- a/src/wx/dcp_panel.h +++ b/src/wx/dcp_panel.h @@ -24,12 +24,12 @@ class Button; +class CheckBox; class wxNotebook; class wxPanel; class wxBoxSizer; class wxTextCtrl; class wxStaticText; -class wxCheckBox; class wxChoice; class wxButton; class wxSpinCtrl; @@ -118,8 +118,8 @@ private: wxStaticText* _name_label; wxTextCtrl* _name; wxStaticText* _dcp_name; - wxCheckBox* _use_isdcf_name; - wxCheckBox* _enable_audio_language = nullptr; + CheckBox* _use_isdcf_name; + CheckBox* _enable_audio_language = nullptr; wxStaticText* _audio_language = nullptr; Button* _edit_audio_language = nullptr; wxStaticText* _container_label; @@ -143,13 +143,13 @@ private: Choice* _audio_processor; wxButton* _show_audio; wxButton* _best_frame_rate; - wxCheckBox* _three_d; - wxCheckBox* _reencode_j2k; + CheckBox* _three_d; + CheckBox* _reencode_j2k; wxStaticText* _resolution_label; Choice* _resolution; wxStaticText* _standard_label; Choice* _standard; - wxCheckBox* _encrypted; + CheckBox* _encrypted; wxStaticText* _reels_label; Choice* _reel_type; wxStaticText* _reel_length_label; |
