diff options
Diffstat (limited to 'src/wx/kdm_dialog.h')
| -rw-r--r-- | src/wx/kdm_dialog.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/wx/kdm_dialog.h b/src/wx/kdm_dialog.h index a240ec1b6..ea504f842 100644 --- a/src/wx/kdm_dialog.h +++ b/src/wx/kdm_dialog.h @@ -21,7 +21,6 @@ #include "wx_util.h" #include <dcp/types.h> #include <wx/wx.h> -#include <boost/shared_ptr.hpp> #include <boost/date_time/posix_time/posix_time.hpp> #include <map> @@ -40,14 +39,14 @@ struct CPLSummary; class KDMDialog : public wxDialog { public: - KDMDialog (wxWindow *, boost::shared_ptr<const Film> film); + KDMDialog (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; ScreensPanel* _screens; KDMTimingPanel* _timing; KDMCPLPanel* _cpl; |
