From 3e118784c7bcea6bd324aabcf793552043d481c0 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sun, 20 Jan 2013 03:24:21 +0000 Subject: [PATCH] =?utf8?q?silence=20GCC=20warning=20"base=20class=20?= =?utf8?q?=E2=80=98class=20wxEvtHandler=E2=80=99=20should=20be=20explicitl?= =?utf8?q?y=20initialized=20in=20the=20copy=20constructor"?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73408 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/validate.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/wx/validate.h b/include/wx/validate.h index 3f60b59389..e79a3becb5 100644 --- a/include/wx/validate.h +++ b/include/wx/validate.h @@ -38,7 +38,8 @@ class WXDLLIMPEXP_CORE wxValidator : public wxEvtHandler public: wxValidator(); wxValidator(const wxValidator& other) - : m_validatorWindow(other.m_validatorWindow) + : wxEvtHandler() + , m_validatorWindow(other.m_validatorWindow) { } virtual ~wxValidator(); -- 2.45.2