summaryrefslogtreecommitdiff
path: root/src/wx/kdm_output_panel.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-11-02 00:18:56 +0100
committerCarl Hetherington <cth@carlh.net>2022-11-02 01:17:53 +0100
commitb39dbb7cf1b0352cf0eb3af4bf4929556355bff5 (patch)
treee679b163406b863dbbc04c4635393973b33929ec /src/wx/kdm_output_panel.h
parent9c6d757fc6ff188521719cad9bf2cd494bb4edd8 (diff)
Cleanup: use new CheckBox::bind().
Diffstat (limited to 'src/wx/kdm_output_panel.h')
-rw-r--r--src/wx/kdm_output_panel.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/kdm_output_panel.h b/src/wx/kdm_output_panel.h
index 9c30e286c..040815392 100644
--- a/src/wx/kdm_output_panel.h
+++ b/src/wx/kdm_output_panel.h
@@ -29,6 +29,7 @@ LIBDCP_ENABLE_WARNINGS
#include <boost/filesystem.hpp>
+class CheckBox;
class DirPickerCtrl;
class Job;
class KDMChoice;
@@ -72,7 +73,7 @@ private:
KDMChoice* _type;
NameFormatEditor* _container_name_format;
NameFormatEditor* _filename_format;
- wxCheckBox* _write_to;
+ CheckBox* _write_to;
#ifdef DCPOMATIC_USE_OWN_PICKER
DirPickerCtrl* _folder;
#else
@@ -81,7 +82,7 @@ private:
wxRadioButton* _write_flat;
wxRadioButton* _write_folder;
wxRadioButton* _write_zip;
- wxCheckBox* _email;
+ CheckBox* _email;
bool _forensic_mark_video;
bool _forensic_mark_audio;
boost::optional<int> _forensic_mark_audio_up_to;