+ //else: ref count is 1, we are exclusive owners of m_refData anyhow
+
+ wxASSERT_MSG( m_refData && m_refData->GetRefCount() == 1,
+ _T("wxObject::AllocExclusive() failed.") );
+}
+
+wxObjectRefData *wxObject::CreateRefData() const
+{
+ // if you use AllocExclusive() you must override this method
+ wxFAIL_MSG( _T("CreateRefData() must be overridden if called!") );
+
+ return NULL;