Remove unused wxNavigationEnabled::AcceptFocus() method.

This doesn't seem to be ever called or used from anywhere else.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72661 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-10-13 22:51:04 +00:00
parent 4e9a014e9b
commit 8f0271018e

View File

@@ -223,11 +223,6 @@ public:
BaseWindowClass::SetFocus(); BaseWindowClass::SetFocus();
} }
void AcceptFocus(bool acceptFocus)
{
m_container.SetCanFocus(acceptFocus);
}
protected: protected:
#ifndef wxHAS_NATIVE_TAB_TRAVERSAL #ifndef wxHAS_NATIVE_TAB_TRAVERSAL
void OnNavigationKey(wxNavigationKeyEvent& event) void OnNavigationKey(wxNavigationKeyEvent& event)
@@ -271,10 +266,6 @@ public: \
virtual void RemoveChild(wxWindowBase *child); \ virtual void RemoveChild(wxWindowBase *child); \
virtual void SetFocus(); \ virtual void SetFocus(); \
void SetFocusIgnoringChildren(); \ void SetFocusIgnoringChildren(); \
void AcceptFocus(bool acceptFocus) \
{ \
m_container.SetCanFocus(acceptFocus); \
} \
\ \
protected: \ protected: \
wxControlContainer m_container wxControlContainer m_container