git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56731
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
public:
wxPGCell();
- wxPGCell( const wxPGCell& other )
+ wxPGCell(const wxPGCell& other)
+ : wxObject(other)
{
- m_refData = other.m_refData;
- if ( m_refData )
- m_refData->IncRef();
}
wxPGCell( const wxString& text,
public:
wxPGChoiceEntry();
wxPGChoiceEntry(const wxPGChoiceEntry& other)
+ : wxPGCell(other)
{
- m_refData = other.m_refData;
- if ( m_refData )
- m_refData->IncRef();
m_value = other.m_value;
}
wxPGChoiceEntry( const wxString& label,