From: Carl Hetherington Date: Thu, 15 Jul 2021 23:08:17 +0000 (+0200) Subject: Fix build with older boost. X-Git-Tag: v2.15.157~7 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=9b85acc342e0cbfc6a9f9533bb7067978bd1294e Fix build with older boost. --- diff --git a/src/wx/dcpomatic_spin_ctrl.cc b/src/wx/dcpomatic_spin_ctrl.cc index 05f13a7d9..a05070410 100644 --- a/src/wx/dcpomatic_spin_ctrl.cc +++ b/src/wx/dcpomatic_spin_ctrl.cc @@ -21,8 +21,13 @@ #include "dcpomatic_spin_ctrl.h" #include +#include #include +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif + SpinCtrl::SpinCtrl (wxWindow* parent, int width) : wxSpinCtrl (parent, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(width, -1), wxSP_ARROW_KEYS | wxTE_PROCESS_ENTER) @@ -30,6 +35,6 @@ SpinCtrl::SpinCtrl (wxWindow* parent, int width) auto enter = [](wxCommandEvent& ev) { dynamic_cast(ev.GetEventObject())->Navigate(); }; - Bind (wxEVT_TEXT_ENTER, boost::bind(enter, boost::placeholders::_1)); + Bind (wxEVT_TEXT_ENTER, boost::bind(enter, _1)); }