Get rid of unnecessary overriding function

OnValidationFailure() in derived class wxEnumProperty has the same implementation (empty body) as the implementation in the base class wxPGProperty so overriding this function in derived class is not necessary.
This commit is contained in:
Artur Wieczorek
2019-03-09 18:39:13 +01:00
parent 47bba8764a
commit 86af7d5ee9
3 changed files with 0 additions and 9 deletions

View File

@@ -1434,11 +1434,6 @@ bool wxEnumProperty::ValueFromInt_(wxVariant& value, int* pIndex, int intVal, in
return false;
}
void
wxEnumProperty::OnValidationFailure( wxVariant& WXUNUSED(pendingValue) )
{
}
void wxEnumProperty::SetIndex( int index )
{
m_index = index;