summaryrefslogtreecommitdiff
path: root/src/wx/config_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-01-04 21:16:53 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-07 22:48:29 +0100
commitdd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (patch)
treee56a3f82fb9e1c8602f265bea0d0688d8a018644 /src/wx/config_dialog.h
parent0d35820cf50d2789752b8776683b26d04642518d (diff)
std::shared_ptr
Diffstat (limited to 'src/wx/config_dialog.h')
-rw-r--r--src/wx/config_dialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/config_dialog.h b/src/wx/config_dialog.h
index a698b252a..b2ebbe605 100644
--- a/src/wx/config_dialog.h
+++ b/src/wx/config_dialog.h
@@ -114,8 +114,8 @@ public:
wxWindow* parent,
wxString title,
int border,
- boost::function<void (boost::shared_ptr<dcp::CertificateChain>)> set,
- boost::function<boost::shared_ptr<const dcp::CertificateChain> (void)> get,
+ 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
);
@@ -145,8 +145,8 @@ private:
wxStaticText* _private_key_bad;
wxSizer* _sizer;
wxBoxSizer* _button_sizer;
- boost::function<void (boost::shared_ptr<dcp::CertificateChain>)> _set;
- boost::function<boost::shared_ptr<const dcp::CertificateChain> (void)> _get;
+ 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;
};