X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0b850f25d2924ee0e5ea08f93fffaa63f62f9104..9859d369b49e35a1cad0f760173e165f974fb6cb:/src/common/object.cpp diff --git a/src/common/object.cpp b/src/common/object.cpp index 0a77aab57b..0289fc2ec6 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -289,6 +289,17 @@ wxObject *wxCreateDynamicObject(const wxChar *name) } +// ---------------------------------------------------------------------------- +// wxObjectRefData +// ---------------------------------------------------------------------------- + +void wxObjectRefData::DecRef() +{ + if ( --m_count == 0 ) + delete this; +} + + // ---------------------------------------------------------------------------- // wxObject // ---------------------------------------------------------------------------- @@ -310,7 +321,7 @@ void wxObject::Ref(const wxObject& clone) if ( clone.m_refData ) { m_refData = clone.m_refData; - ++(m_refData->m_count); + m_refData->IncRef(); } } @@ -320,8 +331,7 @@ void wxObject::UnRef() { wxASSERT_MSG( m_refData->m_count > 0, _T("invalid ref data count") ); - if ( --m_refData->m_count == 0 ) - delete m_refData; + m_refData->DecRef(); m_refData = NULL; } }