Fix compile warning.
authorCarl Hetherington <cth@carlh.net>
Wed, 14 Jul 2021 20:06:59 +0000 (22:06 +0200)
committerCarl Hetherington <cth@carlh.net>
Wed, 14 Jul 2021 20:06:59 +0000 (22:06 +0200)
src/wx/dcpomatic_spin_ctrl.cc

index e8f2fdbc74f92eb07ecb6f34c1a2d74fb3c67adb..05f13a7d91644d9830c7557880f3e02c6c715c60 100644 (file)
 
 
 #include "dcpomatic_spin_ctrl.h"
 
 
 #include "dcpomatic_spin_ctrl.h"
-#include <boost/bind.hpp>
+#include <boost/bind/bind.hpp>
 #include <wx/wx.h>
 #include <wx/wx.h>
-#if BOOST_VERSION >= 106100
-using namespace boost::placeholders;
-#endif
 
 
 SpinCtrl::SpinCtrl (wxWindow* parent, int width)
 
 
 SpinCtrl::SpinCtrl (wxWindow* parent, int width)
@@ -33,6 +30,6 @@ SpinCtrl::SpinCtrl (wxWindow* parent, int width)
        auto enter = [](wxCommandEvent& ev) {
                dynamic_cast<wxWindow*>(ev.GetEventObject())->Navigate();
        };
        auto enter = [](wxCommandEvent& ev) {
                dynamic_cast<wxWindow*>(ev.GetEventObject())->Navigate();
        };
-       Bind (wxEVT_TEXT_ENTER, boost::bind<void>(enter, _1));
+       Bind (wxEVT_TEXT_ENTER, boost::bind<void>(enter, boost::placeholders::_1));
 }
 
 }