Remove player activity logging. Fixes #2122.
[dcpomatic.git] / src / wx / paste_dialog.cc
index c613cad3b6f39a791bfacd6007f0125e2c7822ef..429e8fe6e473a0e145cf99cac80b4dbd8d50bfe2 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #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);
 
        layout ();
 }
 
+
 bool
 PasteDialog::video () const
 {
        return _video->GetValue ();
 }
 
+
 bool
 PasteDialog::audio () const
 {
        return _audio->GetValue ();
 }
 
+
 bool
 PasteDialog::text () const
 {