From e212ac85912332f135123cd58c568d639b08c592 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 2 Oct 2014 23:49:20 +0000 Subject: [PATCH] Don't export private wxDisplayImplX11 class. This class is only used internally and doesn't need to be exported. In addition to being unnecessary, this also resulted in ABI compatibility check errors after changes to this class in 3.0 branch, so avoid such problems in the future. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77944 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/unix/displayx11.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix/displayx11.cpp b/src/unix/displayx11.cpp index d29d9c2f65..0310f2c272 100644 --- a/src/unix/displayx11.cpp +++ b/src/unix/displayx11.cpp @@ -82,7 +82,7 @@ public: // display and display factory classes // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxDisplayImplX11 : public wxDisplayImpl +class wxDisplayImplX11 : public wxDisplayImpl { public: wxDisplayImplX11(unsigned n, const ScreenInfo& info)