summaryrefslogtreecommitdiff
path: root/src/wx/dkdm_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/dkdm_dialog.h
parent0d35820cf50d2789752b8776683b26d04642518d (diff)
std::shared_ptr
Diffstat (limited to 'src/wx/dkdm_dialog.h')
-rw-r--r--src/wx/dkdm_dialog.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wx/dkdm_dialog.h b/src/wx/dkdm_dialog.h
index f6f29f852..4235de511 100644
--- a/src/wx/dkdm_dialog.h
+++ b/src/wx/dkdm_dialog.h
@@ -20,7 +20,6 @@
#include "wx_util.h"
#include <wx/wx.h>
-#include <boost/shared_ptr.hpp>
#include <map>
class Film;
@@ -34,14 +33,14 @@ struct CPLSummary;
class DKDMDialog : public wxDialog
{
public:
- DKDMDialog (wxWindow *, boost::shared_ptr<const Film> film);
+ DKDMDialog (wxWindow *, std::shared_ptr<const Film> film);
private:
void setup_sensitivity ();
void make_clicked ();
bool confirm_overwrite (boost::filesystem::path path);
- boost::weak_ptr<const Film> _film;
+ std::weak_ptr<const Film> _film;
RecipientsPanel* _recipients;
KDMTimingPanel* _timing;
KDMCPLPanel* _cpl;