diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-08 00:09:57 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-08 00:09:57 +0000 |
| commit | 9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94 (patch) | |
| tree | 674348c2090d46047c62ad6e1fdbb3a0b5c32896 /src/wx/kdm_advanced_dialog.cc | |
| parent | cac2b6f2c8dffcb7271d71fc23c0150c2fe4d6ea (diff) | |
Basics of in-place i18n with support for wxStaticText and wxCheckBox.
Diffstat (limited to 'src/wx/kdm_advanced_dialog.cc')
| -rw-r--r-- | src/wx/kdm_advanced_dialog.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/kdm_advanced_dialog.cc b/src/wx/kdm_advanced_dialog.cc index 9c35f506a..2027c0639 100644 --- a/src/wx/kdm_advanced_dialog.cc +++ b/src/wx/kdm_advanced_dialog.cc @@ -19,15 +19,16 @@ */ #include "kdm_advanced_dialog.h" +#include "check_box.h" KDMAdvancedDialog::KDMAdvancedDialog (wxWindow* parent, bool forensic_mark_video, bool forensic_mark_audio) : TableDialog (parent, _("Advanced KDM options"), 2, 1, false) { - _forensic_mark_video = new wxCheckBox (this, wxID_ANY, _("Forensically mark video")); + _forensic_mark_video = new CheckBox (this, _("Forensically mark video")); _forensic_mark_video->SetValue (forensic_mark_video); add (_forensic_mark_video); add_spacer (); - _forensic_mark_audio = new wxCheckBox (this, wxID_ANY, _("Forensically mark audio")); + _forensic_mark_audio = new CheckBox (this, _("Forensically mark audio")); _forensic_mark_audio->SetValue (forensic_mark_audio); add (_forensic_mark_audio); add_spacer (); |
