diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-05-01 01:31:35 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-05-01 01:31:35 +0200 |
| commit | 8963f0007af1a312017b9627c18b82ec2a577591 (patch) | |
| tree | baeb6f2c17da72248408b8c1d695242b44edda9e /src/wx/config_dialog.h | |
| parent | 29f84e2b8785585885e0658bdf9938967547460f (diff) | |
C++11 tidying.
Diffstat (limited to 'src/wx/config_dialog.h')
| -rw-r--r-- | src/wx/config_dialog.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h index 818ab4def..dd0e92152 100644 --- a/src/wx/config_dialog.h +++ b/src/wx/config_dialog.h @@ -113,9 +113,9 @@ public: wxWindow* parent, wxString title, int border, - boost::function<void (std::shared_ptr<dcp::CertificateChain>)> set, - boost::function<std::shared_ptr<const dcp::CertificateChain> (void)> get, - boost::function<bool (void)> nag_alter + std::function<void (std::shared_ptr<dcp::CertificateChain>)> set, + std::function<std::shared_ptr<const dcp::CertificateChain> (void)> get, + std::function<bool (void)> nag_alter ); void add_button (wxWindow* button); @@ -144,9 +144,9 @@ private: wxStaticText* _private_key_bad; wxSizer* _sizer; wxBoxSizer* _button_sizer; - boost::function<void (std::shared_ptr<dcp::CertificateChain>)> _set; - boost::function<std::shared_ptr<const dcp::CertificateChain> (void)> _get; - boost::function<bool (void)> _nag_alter; + std::function<void (std::shared_ptr<dcp::CertificateChain>)> _set; + std::function<std::shared_ptr<const dcp::CertificateChain> (void)> _get; + std::function<bool (void)> _nag_alter; }; class KeysPage : public Page |
