From e71baaa811cc631619cb9adc12ab517f644aef72 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Wed, 16 Mar 2011 10:55:30 +0000 Subject: [PATCH] calling explicit base class constructor from copy constructor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67215 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/osx/core/private/strconv_cf.h | 2 +- include/wx/valnum.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/osx/core/private/strconv_cf.h b/include/wx/osx/core/private/strconv_cf.h index 1c49cc3919..a295528576 100644 --- a/include/wx/osx/core/private/strconv_cf.h +++ b/include/wx/osx/core/private/strconv_cf.h @@ -295,7 +295,7 @@ public: Init(CFStringGetSystemEncoding()) ; } - wxMBConv_cf(const wxMBConv_cf& conv) + wxMBConv_cf(const wxMBConv_cf& conv) : wxMBConv() { m_encoding = conv.m_encoding; } diff --git a/include/wx/valnum.h b/include/wx/valnum.h index 19320248e4..2fbfe607b8 100644 --- a/include/wx/valnum.h +++ b/include/wx/valnum.h @@ -49,7 +49,7 @@ protected: m_style = style; } - wxNumValidatorBase(const wxNumValidatorBase& other) + wxNumValidatorBase(const wxNumValidatorBase& other) : wxValidator() { m_style = other.m_style; } -- 2.45.2