More tweaks.
[dcpomatic.git] / src / wx / paste_dialog.cc
index eade31490540177e2f6486a15913bc902aceee7e..c613cad3b6f39a791bfacd6007f0125e2c7822ef 100644 (file)
@@ -20,7 +20,7 @@
 
 #include "paste_dialog.h"
 
-PasteDialog::PasteDialog (wxWindow* parent, bool video, bool audio, bool subtitle)
+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"));
@@ -29,9 +29,9 @@ PasteDialog::PasteDialog (wxWindow* parent, bool video, bool audio, bool subtitl
        _audio = new wxCheckBox (this, wxID_ANY, _("Paste audio settings"));
        _audio->Enable (audio);
        add (_audio);
-       _subtitle = new wxCheckBox (this, wxID_ANY, _("Paste subtitle settings"));
-       _subtitle->Enable (subtitle);
-       add (_subtitle);
+       _text = new wxCheckBox (this, wxID_ANY, _("Paste subtitle and caption settings"));
+       _text->Enable (text);
+       add (_text);
 
        layout ();
 }
@@ -49,7 +49,7 @@ PasteDialog::audio () const
 }
 
 bool
-PasteDialog::subtitle () const
+PasteDialog::text () const
 {
-       return _subtitle->GetValue ();
+       return _text->GetValue ();
 }