X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Frecipient_dialog.cc;h=d59226a96e94abb2e101de54e047188e62c01a57;hb=e7ee69e61c1bd968e85fc8d7b3641c0fc4282813;hp=f0bb547080a4ef5bd8dc27d79c088024a3ed549c;hpb=2da4caba7871455c097c0ed940dd6f2332dbda5d;p=dcpomatic.git diff --git a/src/wx/recipient_dialog.cc b/src/wx/recipient_dialog.cc index f0bb54708..d59226a96 100644 --- a/src/wx/recipient_dialog.cc +++ b/src/wx/recipient_dialog.cc @@ -42,6 +42,9 @@ using std::vector; using std::list; using boost::optional; using boost::bind; +#if BOOST_VERSION >= 106100 +using namespace boost::placeholders; +#endif static string @@ -84,7 +87,7 @@ RecipientDialog::RecipientDialog ( copy (emails.begin(), emails.end(), back_inserter (_emails)); vector columns; - columns.push_back (EditableListColumn(wx_to_std(_("Address")))); + columns.push_back (EditableListColumn(_("Address"))); _email_list = new EditableList ( this, columns, bind(&RecipientDialog::get_emails, this), bind(&RecipientDialog::set_emails, this, _1), bind(&column, _1) );