diff --git a/eeschema/widgets/pin_shape_combobox.cpp b/eeschema/widgets/pin_shape_combobox.cpp index a2c43c916c..ecc9a07b8a 100644 --- a/eeschema/widgets/pin_shape_combobox.cpp +++ b/eeschema/widgets/pin_shape_combobox.cpp @@ -61,9 +61,3 @@ GRAPHIC_PINSHAPE PinShapeComboBox::GetPinShapeSelection() { return static_cast( GetSelection() ); } - - -void PinShapeComboBox::SetSelection( GRAPHIC_PINSHAPE aShape ) -{ - wxBitmapComboBox::SetSelection( aShape ); -} diff --git a/eeschema/widgets/pin_shape_combobox.h b/eeschema/widgets/pin_shape_combobox.h index b1f0bddd03..47ff92ca68 100644 --- a/eeschema/widgets/pin_shape_combobox.h +++ b/eeschema/widgets/pin_shape_combobox.h @@ -47,5 +47,4 @@ public: const wxString& name = wxBitmapComboBoxNameStr ); GRAPHIC_PINSHAPE GetPinShapeSelection(); - void SetSelection( GRAPHIC_PINSHAPE aShape ); }; diff --git a/eeschema/widgets/pin_type_combobox.cpp b/eeschema/widgets/pin_type_combobox.cpp index e587c41fae..8b435db240 100644 --- a/eeschema/widgets/pin_type_combobox.cpp +++ b/eeschema/widgets/pin_type_combobox.cpp @@ -61,9 +61,3 @@ ELECTRICAL_PINTYPE PinTypeComboBox::GetPinTypeSelection() { return static_cast( GetSelection() ); } - - -void PinTypeComboBox::SetSelection( ELECTRICAL_PINTYPE aType ) -{ - wxBitmapComboBox::SetSelection( aType ); -} diff --git a/eeschema/widgets/pin_type_combobox.h b/eeschema/widgets/pin_type_combobox.h index 00036e1961..ea196ef880 100644 --- a/eeschema/widgets/pin_type_combobox.h +++ b/eeschema/widgets/pin_type_combobox.h @@ -47,5 +47,4 @@ public: const wxString& name = wxBitmapComboBoxNameStr ); ELECTRICAL_PINTYPE GetPinTypeSelection(); - void SetSelection( ELECTRICAL_PINTYPE aType ); };