From 1e1c5d6276dadefa53deebbd7fe5b766bad74cde Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 28 May 2006 14:33:56 +0000 Subject: [PATCH] explicitly call base class ctor to silent gcc warning (patch 1492701) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39375 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index f4a58755c3..49e78f40dd 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -1997,6 +1997,7 @@ public: } wxMBConv_win32(const wxMBConv_win32& conv) + : wxMBConv() { m_CodePage = conv.m_CodePage; m_minMBCharWidth = conv.m_minMBCharWidth; -- 2.45.2