X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Freport_problem_dialog.h;h=b12bece618508505962ef001458bfea7533a6672;hb=9ff22e1694a53f09a84b01685b64dcb83e830365;hp=a13c6a671a6fd36fce8d47a778933fb54edb78e3;hpb=67a68bd971ebe1b35daa3f75873b4ccb53c00ba0;p=dcpomatic.git diff --git a/src/wx/report_problem_dialog.h b/src/wx/report_problem_dialog.h index a13c6a671..b12bece61 100644 --- a/src/wx/report_problem_dialog.h +++ b/src/wx/report_problem_dialog.h @@ -18,8 +18,13 @@ */ + +#include "lib/warnings.h" +DCPOMATIC_DISABLE_WARNINGS #include -#include +DCPOMATIC_ENABLE_WARNINGS +#include + class wxTextCtrl; class wxFlexGridSizer; @@ -29,12 +34,12 @@ class Film; class ReportProblemDialog : public wxDialog { public: - ReportProblemDialog (wxWindow* parent, boost::shared_ptr film); + ReportProblemDialog (wxWindow* parent, std::shared_ptr film = std::shared_ptr()); void report (); private: - boost::shared_ptr _film; + std::shared_ptr _film; wxSizer* _overall_sizer; wxFlexGridSizer* _table;