From 67fadfbbf139a70a638cc163854a468cd837856d Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 6 Sep 2015 21:27:37 -0700 Subject: [PATCH] Avoid GCC warning: base class should be explicitly initialized in the copy constructor --- samples/validate/validate.h | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/validate/validate.h b/samples/validate/validate.h index 0873c86a53..48a4ca5cf6 100644 --- a/samples/validate/validate.h +++ b/samples/validate/validate.h @@ -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;