From: Vadim Zeitlin Date: Sun, 4 Mar 2012 00:43:19 +0000 (+0000) Subject: Revert the addition of WXDLLIMPEXP_CORE to all wxNavigationEnabled methods. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/865dab5da92b4bc014ae2f68349e5ad3daf80532 Revert the addition of WXDLLIMPEXP_CORE to all wxNavigationEnabled methods. This reverts commit r70787 as it broke DLL build with MSVC. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70804 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/containr.h b/include/wx/containr.h index 295a6c8d7b..db2956ca4e 100644 --- a/include/wx/containr.h +++ b/include/wx/containr.h @@ -179,29 +179,29 @@ public: #endif // !wxHAS_NATIVE_TAB_TRAVERSAL } - WXDLLIMPEXP_CORE virtual bool AcceptsFocus() const + virtual bool AcceptsFocus() const { return m_container.AcceptsFocus(); } - WXDLLIMPEXP_CORE virtual bool AcceptsFocusRecursively() const + virtual bool AcceptsFocusRecursively() const { return m_container.AcceptsFocusRecursively(); } - WXDLLIMPEXP_CORE virtual bool AcceptsFocusFromKeyboard() const + virtual bool AcceptsFocusFromKeyboard() const { return m_container.AcceptsFocusFromKeyboard(); } - WXDLLIMPEXP_CORE virtual void AddChild(wxWindowBase *child) + virtual void AddChild(wxWindowBase *child) { BaseWindowClass::AddChild(child); m_container.UpdateCanFocus(); } - WXDLLIMPEXP_CORE virtual void RemoveChild(wxWindowBase *child) + virtual void RemoveChild(wxWindowBase *child) { #ifndef wxHAS_NATIVE_TAB_TRAVERSAL m_container.HandleOnWindowDestroy(child); @@ -212,7 +212,7 @@ public: m_container.UpdateCanFocus(); } - WXDLLIMPEXP_CORE virtual void SetFocus() + virtual void SetFocus() { if ( !m_container.DoSetFocus() ) BaseWindowClass::SetFocus();