X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fmarkers_dialog.h;h=7d713bd59fbf4f60ff723c1399de7b333b7877c7;hb=796aaab029ebd06a6176383714ef75726b2b9ec2;hp=fbbaa1aee9fd2c12178d87ce6303c51b4a8b1a2a;hpb=8c365af343a15bee11af53fc6bc16487b83260d1;p=dcpomatic.git diff --git a/src/wx/markers_dialog.h b/src/wx/markers_dialog.h index fbbaa1aee..7d713bd59 100644 --- a/src/wx/markers_dialog.h +++ b/src/wx/markers_dialog.h @@ -18,10 +18,14 @@ */ + +#include "lib/warnings.h" +DCPOMATIC_DISABLE_WARNINGS #include -#include -#include +DCPOMATIC_ENABLE_WARNINGS #include +#include + class Marker; class Film; @@ -30,9 +34,9 @@ class FilmViewer; class MarkersDialog : public wxDialog { public: - MarkersDialog (wxWindow* parent, boost::weak_ptr film, boost::weak_ptr viewer); + MarkersDialog (wxWindow* parent, std::weak_ptr film, std::weak_ptr viewer); private: - std::list > _markers; - boost::weak_ptr _film; + std::list> _markers; + std::weak_ptr _film; };