X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/778df99f55a0ac45bc14b5c528da8e9a32bb19d6..bfa78c63b9045c2a594ca6f04dc26a70c21f5f42:/include/wx/containr.h diff --git a/include/wx/containr.h b/include/wx/containr.h index 295a6c8d7b..d4eb907682 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 + WXDLLIMPEXP_INLINE_CORE virtual bool AcceptsFocus() const { return m_container.AcceptsFocus(); } - WXDLLIMPEXP_CORE virtual bool AcceptsFocusRecursively() const + WXDLLIMPEXP_INLINE_CORE virtual bool AcceptsFocusRecursively() const { return m_container.AcceptsFocusRecursively(); } - WXDLLIMPEXP_CORE virtual bool AcceptsFocusFromKeyboard() const + WXDLLIMPEXP_INLINE_CORE virtual bool AcceptsFocusFromKeyboard() const { return m_container.AcceptsFocusFromKeyboard(); } - WXDLLIMPEXP_CORE virtual void AddChild(wxWindowBase *child) + WXDLLIMPEXP_INLINE_CORE virtual void AddChild(wxWindowBase *child) { BaseWindowClass::AddChild(child); m_container.UpdateCanFocus(); } - WXDLLIMPEXP_CORE virtual void RemoveChild(wxWindowBase *child) + WXDLLIMPEXP_INLINE_CORE 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() + WXDLLIMPEXP_INLINE_CORE virtual void SetFocus() { if ( !m_container.DoSetFocus() ) BaseWindowClass::SetFocus();