From ddc88b74b6b75e3a8d19627425cb5500b52a79be Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 30 Sep 2018 18:09:00 +0200 Subject: [PATCH] Remove unnecessary DLL export declarations for private classes wxDisplayFactory and wxDisplayImpl don't have to be exported from the wxWidgets shared libraries and, in fact, shouldn't be. --- include/wx/private/display.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wx/private/display.h b/include/wx/private/display.h index 2635758fe8..d1346fc4eb 100644 --- a/include/wx/private/display.h +++ b/include/wx/private/display.h @@ -18,7 +18,7 @@ // wxDisplayFactory: allows to create wxDisplay objects // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxDisplayFactory +class wxDisplayFactory { public: wxDisplayFactory() { } @@ -65,7 +65,7 @@ private: // wxDisplayImpl: base class for all wxDisplay implementations // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxDisplayImpl +class wxDisplayImpl { public: // virtual dtor for this base class @@ -160,7 +160,7 @@ public: // Note that this is still an ABC and derived classes must implement // CreateSingleDisplay(). -class WXDLLIMPEXP_CORE wxDisplayFactorySingle : public wxDisplayFactory +class wxDisplayFactorySingle : public wxDisplayFactory { public: virtual unsigned GetCount() wxOVERRIDE { return 1; }