X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fcontent_view.h;h=0bbfffaa76418f331f1ee699d7d6afb3d21fe508;hb=fd7b84dd8cc52dac22ce8903dd22b0046f1f9b72;hp=3f4a65ab1bc1e58f1258ea6a6de219ee2e7c17a4;hpb=2da4caba7871455c097c0ed940dd6f2332dbda5d;p=dcpomatic.git diff --git a/src/wx/content_view.h b/src/wx/content_view.h index 3f4a65ab1..0bbfffaa7 100644 --- a/src/wx/content_view.h +++ b/src/wx/content_view.h @@ -23,8 +23,6 @@ DCPOMATIC_DISABLE_WARNINGS #include DCPOMATIC_ENABLE_WARNINGS -#include -#include #include class Content; @@ -35,14 +33,14 @@ class ContentView : public wxListCtrl, public ContentStore public: ContentView (wxWindow* parent); - boost::shared_ptr selected () const; + std::shared_ptr selected () const; void update (); - boost::shared_ptr get (std::string digest) const; + std::shared_ptr get (std::string digest) const; private: - void add (boost::shared_ptr content); + void add (std::shared_ptr content); - boost::weak_ptr _film; - std::vector > _content; + std::weak_ptr _film; + std::vector > _content; };