From a378977021dc4bc01ae34d6d46b3d35a3c5e4bcd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 11 Oct 2011 17:56:57 +0000 Subject: [PATCH] Added missing WXDLLIMPEXP_CORE to wxNonOwnedWindowBase declaration. This fixes (harmless) MSVC warning C4275 about inheriting DLL-exported class from a non-DLL-exported base class. Closes #13554. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69381 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/nonownedwnd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/nonownedwnd.h b/include/wx/nonownedwnd.h index a7d35144d2..8029419765 100644 --- a/include/wx/nonownedwnd.h +++ b/include/wx/nonownedwnd.h @@ -18,7 +18,7 @@ // wxNonOwnedWindow: a window that is not a child window of another one. // ---------------------------------------------------------------------------- -class wxNonOwnedWindowBase : public wxWindow +class WXDLLIMPEXP_CORE wxNonOwnedWindowBase : public wxWindow { public: // Set the shape of the window to the given region. -- 2.45.2