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
This commit is contained in:
Vadim Zeitlin 2006-05-28 14:33:56 +00:00
parent 8e1a5bf979
commit 1e1c5d6276

View File

@ -1997,6 +1997,7 @@ public:
}
wxMBConv_win32(const wxMBConv_win32& conv)
: wxMBConv()
{
m_CodePage = conv.m_CodePage;
m_minMBCharWidth = conv.m_minMBCharWidth;