sm_classTable = classTable;
}
+#ifdef __WXDEBUG__
// reentrance guard - see note above
static int entry = 0;
wxASSERT_MSG(++entry == 1, _T("wxClassInfo::Register() reentrance"));
+#endif
// Using IMPLEMENT_DYNAMIC_CLASS() macro twice (which may happen if you
// link any object module twice mistakenly, or link twice against wx shared
sm_classTable->Put(m_className, (wxObject *)this);
+#ifdef __WXDEBUG__
--entry;
+#endif
}
void wxClassInfo::Unregister()
}
+// ----------------------------------------------------------------------------
+// wxObjectRefData
+// ----------------------------------------------------------------------------
+
+void wxObjectRefData::DecRef()
+{
+ if ( --m_count == 0 )
+ delete this;
+}
+
+
// ----------------------------------------------------------------------------
// wxObject
// ----------------------------------------------------------------------------
if ( clone.m_refData )
{
m_refData = clone.m_refData;
- ++(m_refData->m_count);
+ m_refData->IncRef();
}
}
{
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;
}
}