Fixed two hidden overloaded function warnings.
Correct way of writing commit c4db8bf4
.
This commit is contained in:
parent
c4db8bf45f
commit
fbace8e513
|
@ -48,4 +48,8 @@ public:
|
||||||
|
|
||||||
GRAPHIC_PINSHAPE GetPinShapeSelection();
|
GRAPHIC_PINSHAPE GetPinShapeSelection();
|
||||||
void SetSelection( GRAPHIC_PINSHAPE aShape );
|
void SetSelection( GRAPHIC_PINSHAPE aShape );
|
||||||
|
|
||||||
|
private:
|
||||||
|
// fixes hidden overloaded virtual function warnings
|
||||||
|
using wxBitmapComboBox::SetSelection;
|
||||||
};
|
};
|
||||||
|
|
|
@ -48,4 +48,8 @@ public:
|
||||||
|
|
||||||
ELECTRICAL_PINTYPE GetPinTypeSelection();
|
ELECTRICAL_PINTYPE GetPinTypeSelection();
|
||||||
void SetSelection( ELECTRICAL_PINTYPE aType );
|
void SetSelection( ELECTRICAL_PINTYPE aType );
|
||||||
|
|
||||||
|
private:
|
||||||
|
// fixes hidden overloaded virtual function warnings
|
||||||
|
using wxBitmapComboBox::SetSelection;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue