fixed gcc warnings about not initializing the base class in copy ctor
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -191,7 +191,8 @@ class WXDLLIMPEXP_BASE wxConvBrokenFileNames : public wxMBConv
|
||||
public:
|
||||
wxConvBrokenFileNames(const wxChar *charset);
|
||||
wxConvBrokenFileNames(const wxConvBrokenFileNames& conv)
|
||||
: m_conv(conv.m_conv ? conv.m_conv->Clone() : NULL)
|
||||
: wxMBConv(),
|
||||
m_conv(conv.m_conv ? conv.m_conv->Clone() : NULL)
|
||||
{
|
||||
}
|
||||
virtual ~wxConvBrokenFileNames() { delete m_conv; }
|
||||
|
Reference in New Issue
Block a user