Use libdcp's warnings.h
[dcpomatic.git] / src / wx / player_information.h
index 84daf020dd01e9a9fccb9a613b069901d656b1e9..269a9e6c7357555167fc6f7c6e585fbaeacf799a 100644 (file)
 
 */
 
+
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 #include <boost/scoped_ptr.hpp>
 
+
 class FilmViewer;
 
+
 class PlayerInformation : public wxPanel
 {
 public:
-       PlayerInformation (wxWindow* parent, ControlFilmViewer* viewer);
+       PlayerInformation (wxWindow* parent, std::weak_ptr<FilmViewer> viewer);
 
        void triggered_update ();
 
@@ -34,7 +40,7 @@ private:
 
        void periodic_update ();
 
-       ControlFilmViewer* _viewer;
+       std::weak_ptr<FilmViewer> _viewer;
        wxSizer* _sizer;
        wxStaticText** _dcp;
        wxStaticText* _dropped;