From 446ff08ebbe6f59165d6afc4ca8b032e29facf96 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 13 Jul 2014 12:22:26 +0000 Subject: [PATCH] Don't DLL-export the private wxSimpleFontEnumerator class. This class is only used internally, so there is no need to export it from the shared library. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/fontenumcmn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/fontenumcmn.cpp b/src/common/fontenumcmn.cpp index 3fc8378241..423f8dbb64 100644 --- a/src/common/fontenumcmn.cpp +++ b/src/common/fontenumcmn.cpp @@ -33,7 +33,7 @@ // A simple wxFontEnumerator which doesn't perform any filtering and // just returns all facenames and encodings found in the system -class WXDLLEXPORT wxSimpleFontEnumerator : public wxFontEnumerator +class wxSimpleFontEnumerator : public wxFontEnumerator { public: wxSimpleFontEnumerator() { }