// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "object.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#endif // wxUSE_EXTENDED_RTTI
-// These are here so we can avoid 'always true/false' warnings
-// by referring to these instead of true/false
-const bool wxTrue = true;
+// this variable exists only so that we can avoid 'always true/false' warnings
const bool wxFalse = false;
// Is this object a kind of (a subclass of) 'info'?
}
}
-void wxClassInfo::CleanUp()
-{
- if ( sm_classTable )
- {
- delete sm_classTable;
- sm_classTable = NULL;
- }
-}
-
void wxClassInfo::Register()
{
if ( !sm_classTable )
// wxObject
// ----------------------------------------------------------------------------
-// Initialize ref data from another object (needed for copy constructor and
-// assignment operator)
-void wxObject::InitFrom(const wxObject& other)
-{
- m_refData = other.m_refData;
- if ( m_refData )
- m_refData->m_count++;
-}
-
void wxObject::Ref(const wxObject& clone)
{
#if defined(__WXDEBUG__) || wxUSE_DEBUG_CONTEXT
{
wxASSERT_MSG( m_refData->m_count > 0, _T("invalid ref data count") );
- if ( !--m_refData->m_count )
+ if ( --m_refData->m_count == 0 )
delete m_refData;
m_refData = NULL;
}