Removed Pin{Shape,Type}ComboBox::SetSelection().
These methods were hiding an overloaded method, which was called anyway.
This commit is contained in:
parent
75fb04d650
commit
6dd47119fe
|
@ -61,9 +61,3 @@ GRAPHIC_PINSHAPE PinShapeComboBox::GetPinShapeSelection()
|
|||
{
|
||||
return static_cast<GRAPHIC_PINSHAPE>( GetSelection() );
|
||||
}
|
||||
|
||||
|
||||
void PinShapeComboBox::SetSelection( GRAPHIC_PINSHAPE aShape )
|
||||
{
|
||||
wxBitmapComboBox::SetSelection( aShape );
|
||||
}
|
||||
|
|
|
@ -47,5 +47,4 @@ public:
|
|||
const wxString& name = wxBitmapComboBoxNameStr );
|
||||
|
||||
GRAPHIC_PINSHAPE GetPinShapeSelection();
|
||||
void SetSelection( GRAPHIC_PINSHAPE aShape );
|
||||
};
|
||||
|
|
|
@ -61,9 +61,3 @@ ELECTRICAL_PINTYPE PinTypeComboBox::GetPinTypeSelection()
|
|||
{
|
||||
return static_cast<ELECTRICAL_PINTYPE>( GetSelection() );
|
||||
}
|
||||
|
||||
|
||||
void PinTypeComboBox::SetSelection( ELECTRICAL_PINTYPE aType )
|
||||
{
|
||||
wxBitmapComboBox::SetSelection( aType );
|
||||
}
|
||||
|
|
|
@ -47,5 +47,4 @@ public:
|
|||
const wxString& name = wxBitmapComboBoxNameStr );
|
||||
|
||||
ELECTRICAL_PINTYPE GetPinTypeSelection();
|
||||
void SetSelection( ELECTRICAL_PINTYPE aType );
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue