Applied patch #12444: wxAcceleratorEntry::IsOk() is broken

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@66927 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2011-02-16 23:27:30 +00:00
parent 770cd51482
commit ca8fdde6a7

View File

@@ -106,8 +106,7 @@ public:
bool IsOk() const
{
return m_flags != 0 &&
m_keyCode != 0;
return m_keyCode != 0;
}