diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-07-12 00:11:02 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-07-12 00:11:02 +0200 |
| commit | c2b7422b8f0ad9fdf1e6e174a90486fb9e6346f4 (patch) | |
| tree | 346e776fd0ba9dfb869fe1b5e3023126a4ff024e /src/wx/dcpomatic_button.h | |
| parent | a88895ae714712eb2d52e6fb2c7576a7e2335754 (diff) | |
Remove some more stuff related to the old "instant i18n" feature.
Diffstat (limited to 'src/wx/dcpomatic_button.h')
| -rw-r--r-- | src/wx/dcpomatic_button.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wx/dcpomatic_button.h b/src/wx/dcpomatic_button.h index 6de8b60f4..75f44e01f 100644 --- a/src/wx/dcpomatic_button.h +++ b/src/wx/dcpomatic_button.h @@ -23,7 +23,6 @@ #define DCPOMATIC_BUTTON_H -#include "i18n_hook.h" #include <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS #include <wx/button.h> @@ -31,13 +30,13 @@ LIBDCP_ENABLE_WARNINGS #include <boost/bind/bind.hpp> -class Button : public wxButton, public I18NHook +class Button : public wxButton { public: Button (wxWindow* parent, wxString label, wxPoint pos = wxDefaultPosition, wxSize = wxDefaultSize, long style = 0); - void set_text (wxString text) override; - wxString get_text () const override; + void set_text(wxString text); + wxString get_text() const; template <typename... Args> void bind(Args... args) { |
