Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / config_move_dialog.cc
index ec677f6af50ddc13941e24fe55a2fb39ffcc4aad..c9a0d7eaeca9805ad1527e850b1fa68a54a88ecf 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2017 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2017-2018 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "config_move_dialog.h"
+#include "static_text.h"
 #include "wx_util.h"
 #include <boost/filesystem.hpp>
 
+
 ConfigMoveDialog::ConfigMoveDialog (wxWindow* parent, boost::filesystem::path new_file)
        : QuestionDialog (
                parent,
@@ -35,7 +38,7 @@ ConfigMoveDialog::ConfigMoveDialog (wxWindow* parent, boost::filesystem::path ne
                std_to_wx(new_file.string()).data()
                );
 
-       _sizer->Add (new wxStaticText (this, wxID_ANY, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
+       _sizer->Add (new StaticText (this, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
 
        layout ();
 }