From 72ef834c704addcc7a627b88580b18e5b3ff1644 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 23 Aug 2021 00:33:10 +0200 Subject: [PATCH] Don't use DLL export declaration with wxTextProofOptions This class doesn't have any non-inline methods, so applying DLL export declaration to it is at best useless and might even be harmful, so don't do it. --- include/wx/textctrl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/textctrl.h b/include/wx/textctrl.h index b195287c58..84695ec409 100644 --- a/include/wx/textctrl.h +++ b/include/wx/textctrl.h @@ -133,7 +133,7 @@ enum wxTextCtrlHitTestResult // Passed to ::EnableProofCheck() to configure the proofing options for // this control // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxTextProofOptions +class wxTextProofOptions { public: wxTextProofOptions(const wxString& lang = wxEmptyString)