Add a description of which part of the config failed to load.
[dcpomatic.git] / src / wx / check_box.h
index 8e6789e448311346f7ddb838c7e353979e9fa80e..6e54ef4116b6cb4ca815ee792c60299c263be336 100644 (file)
 
 
 #include "i18n_hook.h"
+#include <dcp/warnings.h>
+LIBDCP_DISABLE_WARNINGS
 #include <wx/wx.h>
+LIBDCP_ENABLE_WARNINGS
 
 
 class CheckBox : public wxCheckBox, public I18NHook
@@ -32,8 +35,8 @@ class CheckBox : public wxCheckBox, public I18NHook
 public:
        CheckBox (wxWindow* parent, wxString label);
 
-       void set_text (wxString text);
-       wxString get_text () const;
+       void set_text (wxString text) override;
+       wxString get_text () const override;
 };