summaryrefslogtreecommitdiff
path: root/src/wx/content_advanced_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/content_advanced_dialog.h
parent0d35820cf50d2789752b8776683b26d04642518d (diff)
std::shared_ptr
Diffstat (limited to 'src/wx/content_advanced_dialog.h')
-rw-r--r--src/wx/content_advanced_dialog.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/content_advanced_dialog.h b/src/wx/content_advanced_dialog.h
index b01669bac..6eaaa2e2d 100644
--- a/src/wx/content_advanced_dialog.h
+++ b/src/wx/content_advanced_dialog.h
@@ -23,7 +23,7 @@
DCPOMATIC_DISABLE_WARNINGS
#include <wx/wx.h>
DCPOMATIC_ENABLE_WARNINGS
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <vector>
@@ -34,7 +34,7 @@ class Filter;
class ContentAdvancedDialog : public wxDialog
{
public:
- ContentAdvancedDialog (wxWindow* parent, boost::shared_ptr<Content> content);
+ ContentAdvancedDialog (wxWindow* parent, std::shared_ptr<Content> content);
private:
void ignore_video_changed (wxCommandEvent& ev);
@@ -44,7 +44,7 @@ private:
void set_video_frame_rate ();
void video_frame_rate_changed ();
- boost::shared_ptr<Content> _content;
+ std::shared_ptr<Content> _content;
wxStaticText* _filters;
wxButton* _filters_button;