Avoid GCC warning: base class should be explicitly initialized in the copy constructor

This commit is contained in:
Paul Cornett
2015-09-06 21:27:37 -07:00
parent 02f22eff71
commit 67fadfbbf1

View File

@@ -85,7 +85,6 @@ public:
class MyComboBoxValidator : public wxValidator
{
public:
MyComboBoxValidator(const MyComboBoxValidator& tocopy) { m_var=tocopy.m_var; }
MyComboBoxValidator(wxString* var) { m_var=var; }
virtual bool Validate(wxWindow* parent) wxOVERRIDE;