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/static_text.h | |
| parent | a88895ae714712eb2d52e6fb2c7576a7e2335754 (diff) | |
Remove some more stuff related to the old "instant i18n" feature.
Diffstat (limited to 'src/wx/static_text.h')
| -rw-r--r-- | src/wx/static_text.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/wx/static_text.h b/src/wx/static_text.h index f10d67866..eec8c7367 100644 --- a/src/wx/static_text.h +++ b/src/wx/static_text.h @@ -19,18 +19,17 @@ */ -#include "i18n_hook.h" #include <dcp/warnings.h> LIBDCP_DISABLE_WARNINGS #include <wx/wx.h> LIBDCP_ENABLE_WARNINGS -class StaticText : public wxStaticText, public I18NHook +class StaticText : public wxStaticText { public: StaticText (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; }; |
