Browse Source

Fixed two hidden overloaded function warnings.

Correct way of writing commit c4db8bf4.
pull/3/merge
Simon Richter 9 years ago
committed by Maciej Suminski
parent
commit
fbace8e513
  1. 4
      eeschema/widgets/pin_shape_combobox.h
  2. 4
      eeschema/widgets/pin_type_combobox.h

4
eeschema/widgets/pin_shape_combobox.h

@ -48,4 +48,8 @@ public:
GRAPHIC_PINSHAPE GetPinShapeSelection();
void SetSelection( GRAPHIC_PINSHAPE aShape );
private:
// fixes hidden overloaded virtual function warnings
using wxBitmapComboBox::SetSelection;
};

4
eeschema/widgets/pin_type_combobox.h

@ -48,4 +48,8 @@ public:
ELECTRICAL_PINTYPE GetPinTypeSelection();
void SetSelection( ELECTRICAL_PINTYPE aType );
private:
// fixes hidden overloaded virtual function warnings
using wxBitmapComboBox::SetSelection;
};
Loading…
Cancel
Save