From: Vadim Zeitlin Date: Tue, 11 Oct 2011 17:56:57 +0000 (+0000) Subject: Added missing WXDLLIMPEXP_CORE to wxNonOwnedWindowBase declaration. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a378977021dc4bc01ae34d6d46b3d35a3c5e4bcd?ds=inline 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 --- 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.