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/export_dialog.cc | |
| parent | cac2b6f2c8dffcb7271d71fc23c0150c2fe4d6ea (diff) | |
Basics of in-place i18n with support for wxStaticText and wxCheckBox.
Diffstat (limited to 'src/wx/export_dialog.cc')
| -rw-r--r-- | src/wx/export_dialog.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/wx/export_dialog.cc b/src/wx/export_dialog.cc index 3c08da1b7..68d3706ff 100644 --- a/src/wx/export_dialog.cc +++ b/src/wx/export_dialog.cc @@ -21,6 +21,7 @@ #include "export_dialog.h" #include "file_picker_ctrl.h" #include "wx_util.h" +#include "check_box.h" #include <wx/filepicker.h> #include <boost/bind.hpp> @@ -55,10 +56,10 @@ ExportDialog::ExportDialog (wxWindow* parent) _format = new wxChoice (this, wxID_ANY); add (_format); add_spacer (); - _mixdown = new wxCheckBox (this, wxID_ANY, _("Mix audio down to stereo")); + _mixdown = new CheckBox (this, _("Mix audio down to stereo")); add (_mixdown, false); add_spacer (); - _split_reels = new wxCheckBox (this, wxID_ANY, _("Write reels into separate files")); + _split_reels = new CheckBox (this, _("Write reels into separate files")); add (_split_reels, false); _x264_crf_label[0] = add (_("Quality"), true); _x264_crf = new wxSlider (this, wxID_ANY, 23, 0, 51, wxDefaultPosition, wxDefaultSize, wxSL_HORIZONTAL | wxSL_LABELS); |
