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
This commit is contained in:
Vadim Zeitlin 2011-10-11 17:56:57 +00:00
parent 796be9238d
commit a378977021

View File

@ -18,7 +18,7 @@
// wxNonOwnedWindow: a window that is not a child window of another one. // wxNonOwnedWindow: a window that is not a child window of another one.
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
class wxNonOwnedWindowBase : public wxWindow class WXDLLIMPEXP_CORE wxNonOwnedWindowBase : public wxWindow
{ {
public: public:
// Set the shape of the window to the given region. // Set the shape of the window to the given region.