Fixed enabling/disabling for wxSpinCtrl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70698 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2012-02-26 15:44:04 +00:00
parent 968978c0e4
commit 880da677a4

View File

@ -320,6 +320,8 @@ bool wxSpinCtrl::Enable(bool enable)
{
if ( !wxControl::Enable(enable) )
return false;
m_text->Enable(enable);
m_btn->Enable(enable);
return true;
}