std::shared_ptr
[dcpomatic.git] / src / wx / config_dialog.h
index a698b252a89d1fd41864fe859a30e7e5869c92e3..b2ebbe605b16eeab20d482d82c17dd85a7fb3618 100644 (file)
@@ -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;
 };