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/paste_dialog.cc | |
| parent | cac2b6f2c8dffcb7271d71fc23c0150c2fe4d6ea (diff) | |
Basics of in-place i18n with support for wxStaticText and wxCheckBox.
Diffstat (limited to 'src/wx/paste_dialog.cc')
| -rw-r--r-- | src/wx/paste_dialog.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/wx/paste_dialog.cc b/src/wx/paste_dialog.cc index c613cad3b..cd4518881 100644 --- a/src/wx/paste_dialog.cc +++ b/src/wx/paste_dialog.cc @@ -19,17 +19,18 @@ */ #include "paste_dialog.h" +#include "check_box.h" PasteDialog::PasteDialog (wxWindow* parent, bool video, bool audio, bool text) : TableDialog (parent, _("Paste"), 1, 0, true) { - _video = new wxCheckBox (this, wxID_ANY, _("Paste video settings")); + _video = new CheckBox (this, _("Paste video settings")); _video->Enable (video); add (_video); - _audio = new wxCheckBox (this, wxID_ANY, _("Paste audio settings")); + _audio = new CheckBox (this, _("Paste audio settings")); _audio->Enable (audio); add (_audio); - _text = new wxCheckBox (this, wxID_ANY, _("Paste subtitle and caption settings")); + _text = new CheckBox (this, _("Paste subtitle and caption settings")); _text->Enable (text); add (_text); |
