From 24cc6c541e06a6462bbbc482180950a545a33632 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Sep 2020 15:28:06 +0200 Subject: [PATCH] Don't DLL-export wxRadioButtonBase template class This is unnecessary, this class only has inline functions. --- include/wx/radiobut.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/radiobut.h b/include/wx/radiobut.h index 182ae9c8c5..d68ac4a665 100644 --- a/include/wx/radiobut.h +++ b/include/wx/radiobut.h @@ -43,7 +43,7 @@ namespace wxPrivate } // namespace wxPrivate template -class WXDLLIMPEXP_CORE wxRadioButtonBase : public W +class wxRadioButtonBase : public W { public: typedef W BaseWindowClass;