Removed Pin{Shape,Type}ComboBox::SetSelection().

These methods were hiding an overloaded method, which was called anyway.
This commit is contained in:
Maciej Suminski 2017-01-18 13:48:08 +01:00 committed by Maciej Suminski
parent 75fb04d650
commit 6dd47119fe
4 changed files with 0 additions and 14 deletions

View File

@ -61,9 +61,3 @@ GRAPHIC_PINSHAPE PinShapeComboBox::GetPinShapeSelection()
{
return static_cast<GRAPHIC_PINSHAPE>( GetSelection() );
}
void PinShapeComboBox::SetSelection( GRAPHIC_PINSHAPE aShape )
{
wxBitmapComboBox::SetSelection( aShape );
}

View File

@ -47,5 +47,4 @@ public:
const wxString& name = wxBitmapComboBoxNameStr );
GRAPHIC_PINSHAPE GetPinShapeSelection();
void SetSelection( GRAPHIC_PINSHAPE aShape );
};

View File

@ -61,9 +61,3 @@ ELECTRICAL_PINTYPE PinTypeComboBox::GetPinTypeSelection()
{
return static_cast<ELECTRICAL_PINTYPE>( GetSelection() );
}
void PinTypeComboBox::SetSelection( ELECTRICAL_PINTYPE aType )
{
wxBitmapComboBox::SetSelection( aType );
}

View File

@ -47,5 +47,4 @@ public:
const wxString& name = wxBitmapComboBoxNameStr );
ELECTRICAL_PINTYPE GetPinTypeSelection();
void SetSelection( ELECTRICAL_PINTYPE aType );
};