implemented explicit copy constructor and assignement operator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15411 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-05-07 20:40:04 +00:00
parent 26ddbfd329
commit 54380f29f0
3 changed files with 35 additions and 3 deletions

View File

@@ -920,6 +920,20 @@ wxCSConv::~wxCSConv()
Clear();
}
wxCSConv::wxCSConv(const wxCSConv& conv)
: wxMBConv()
{
Clear();
SetName(conv.m_name);
}
wxCSConv& wxCSConv::operator=(const wxCSConv& conv)
{
Clear();
SetName(conv.m_name);
return *this;
}
void wxCSConv::Clear()
{
if (m_name)