summaryrefslogtreecommitdiff
path: root/src/wx/check_box.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-07-12 00:11:02 +0200
committerCarl Hetherington <cth@carlh.net>2024-07-12 00:11:02 +0200
commitc2b7422b8f0ad9fdf1e6e174a90486fb9e6346f4 (patch)
tree346e776fd0ba9dfb869fe1b5e3023126a4ff024e /src/wx/check_box.h
parenta88895ae714712eb2d52e6fb2c7576a7e2335754 (diff)
Remove some more stuff related to the old "instant i18n" feature.
Diffstat (limited to 'src/wx/check_box.h')
-rw-r--r--src/wx/check_box.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wx/check_box.h b/src/wx/check_box.h
index d9feb00c9..7f8c6dd43 100644
--- a/src/wx/check_box.h
+++ b/src/wx/check_box.h
@@ -23,7 +23,6 @@
#define DCPOMATIC_CHECK_BOX_H
-#include "i18n_hook.h"
#include <dcp/warnings.h>
LIBDCP_DISABLE_WARNINGS
#include <wx/wx.h>
@@ -31,13 +30,13 @@ LIBDCP_ENABLE_WARNINGS
#include <boost/bind/bind.hpp>
-class CheckBox : public wxCheckBox, public I18NHook
+class CheckBox : public wxCheckBox
{
public:
CheckBox (wxWindow* parent, wxString label);
- void set_text (wxString text) override;
- wxString get_text () const override;
+ void set_text(wxString text);
+ wxString get_text() const;
bool get() const;
void set(bool state);