X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Freport_problem_dialog.h;h=b12bece618508505962ef001458bfea7533a6672;hb=9ff22e1694a53f09a84b01685b64dcb83e830365;hp=fda3761d326a7fa1ffff2fab29234ea2875adc7d;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/wx/report_problem_dialog.h b/src/wx/report_problem_dialog.h index fda3761d3..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); + 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; @@ -42,4 +47,3 @@ private: wxCheckBox* _send_logs; wxTextCtrl* _email; }; -