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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user