From 6b6832796a040a44ef2ad81930b60b485b231f25 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 (cherry picked from commit 67fadfbbf139a70a638cc163854a468cd837856d) --- samples/validate/validate.h | 1 - 1 file changed, 1 deletion(-) diff --git a/samples/validate/validate.h b/samples/validate/validate.h index d3970e1c08..6829af6c32 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);