X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fstatic_text.h;h=f10d67866c507515100cae5550f9f0e1fb5fef6c;hb=6d686ea45f5cd01a0d11f92a903ac77779ad8562;hp=0e49379a97c4cd04e34e3083d0b4f8dcf747e336;hpb=9c1bb2e5ca7c80c4e26b1b2e41159aa171360a94;p=dcpomatic.git diff --git a/src/wx/static_text.h b/src/wx/static_text.h index 0e49379a9..f10d67866 100644 --- a/src/wx/static_text.h +++ b/src/wx/static_text.h @@ -18,14 +18,19 @@ */ + #include "i18n_hook.h" +#include +LIBDCP_DISABLE_WARNINGS #include +LIBDCP_ENABLE_WARNINGS + class StaticText : public wxStaticText, public I18NHook { public: StaticText (wxWindow* parent, wxString label, wxPoint pos = wxDefaultPosition, wxSize = wxDefaultSize, long style = 0); - void set_text (wxString text); - wxString get_text () const; + void set_text (wxString text) override; + wxString get_text () const override; };