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/config_dialog.h | |
| parent | 9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff) | |
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index a258e1fe2..e0d7f15b8 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -49,6 +49,7 @@ LIBDCP_ENABLE_WARNINGS class AudioMappingView; +class CheckBox; class Page : public wxPreferencesPage @@ -104,10 +105,10 @@ private: void check_for_updates_changed (); void check_for_test_updates_changed (); - wxCheckBox* _set_language; + CheckBox* _set_language; wxChoice* _language; - wxCheckBox* _check_for_updates; - wxCheckBox* _check_for_test_updates; + CheckBox* _check_for_updates; + CheckBox* _check_for_test_updates; }; @@ -212,7 +213,7 @@ private: void map_changed (AudioMapping m); void reset_to_default (); - wxCheckBox* _sound; + CheckBox* _sound; wxChoice* _sound_output; wxStaticText* _sound_output_details; AudioMappingView* _map; |
