Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / recreate_chain_dialog.cc
index 322d5964ce729049858c944189d4a145380aa6df..59fbeb6c715d44e73f11949f2054e0ac7498e625 100644 (file)
@@ -23,7 +23,6 @@
 #include "static_text.h"
 #include "check_box.h"
 #include "lib/config.h"
-#include <boost/foreach.hpp>
 
 using std::list;
 using std::string;
@@ -39,9 +38,9 @@ RecreateChainDialog::RecreateChainDialog (wxWindow* parent, wxString title, wxSt
        _sizer->Add (new StaticText (this, message), 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
 
        if (nag) {
-               wxCheckBox* shut_up = new CheckBox (this, _("Don't ask this again"));
+               auto shut_up = new CheckBox (this, _("Don't ask this again"));
                _sizer->Add (shut_up, 0, wxALL, DCPOMATIC_DIALOG_BORDER);
-               shut_up->Bind (wxEVT_CHECKBOX, bind (&RecreateChainDialog::shut_up, this, _1));
+               shut_up->bind(&RecreateChainDialog::shut_up, this, _1);
        }
 
        layout ();