Emit no audio from DCPs if none is mapped
[dcpomatic.git] / src / wx / static_text.h
index 0e49379a97c4cd04e34e3083d0b4f8dcf747e336..f10d67866c507515100cae5550f9f0e1fb5fef6c 100644 (file)
 
 */
 
+
 #include "i18n_hook.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+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;
 };