Fixed two hidden overloaded function warnings.

Correct way of writing commit c4db8bf4.
This commit is contained in:
Simon Richter 2017-01-18 17:24:05 +01:00 committed by Maciej Suminski
parent c4db8bf45f
commit fbace8e513
2 changed files with 8 additions and 0 deletions

View File

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

View File

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