we have to export every virtual method in this template class for clang

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70787 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2012-03-03 17:30:32 +00:00
parent 1788a5f954
commit 778df99f55

View File

@@ -179,29 +179,29 @@ public:
#endif // !wxHAS_NATIVE_TAB_TRAVERSAL #endif // !wxHAS_NATIVE_TAB_TRAVERSAL
} }
virtual bool AcceptsFocus() const WXDLLIMPEXP_CORE virtual bool AcceptsFocus() const
{ {
return m_container.AcceptsFocus(); return m_container.AcceptsFocus();
} }
virtual bool AcceptsFocusRecursively() const WXDLLIMPEXP_CORE virtual bool AcceptsFocusRecursively() const
{ {
return m_container.AcceptsFocusRecursively(); return m_container.AcceptsFocusRecursively();
} }
virtual bool AcceptsFocusFromKeyboard() const WXDLLIMPEXP_CORE virtual bool AcceptsFocusFromKeyboard() const
{ {
return m_container.AcceptsFocusFromKeyboard(); return m_container.AcceptsFocusFromKeyboard();
} }
virtual void AddChild(wxWindowBase *child) WXDLLIMPEXP_CORE virtual void AddChild(wxWindowBase *child)
{ {
BaseWindowClass::AddChild(child); BaseWindowClass::AddChild(child);
m_container.UpdateCanFocus(); m_container.UpdateCanFocus();
} }
virtual void RemoveChild(wxWindowBase *child) WXDLLIMPEXP_CORE virtual void RemoveChild(wxWindowBase *child)
{ {
#ifndef wxHAS_NATIVE_TAB_TRAVERSAL #ifndef wxHAS_NATIVE_TAB_TRAVERSAL
m_container.HandleOnWindowDestroy(child); m_container.HandleOnWindowDestroy(child);
@@ -212,7 +212,7 @@ public:
m_container.UpdateCanFocus(); m_container.UpdateCanFocus();
} }
virtual void SetFocus() WXDLLIMPEXP_CORE virtual void SetFocus()
{ {
if ( !m_container.DoSetFocus() ) if ( !m_container.DoSetFocus() )
BaseWindowClass::SetFocus(); BaseWindowClass::SetFocus();