minor OS/2 VA 3.0 #ifdefs

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7135 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
2000-04-12 00:50:53 +00:00
parent 05255a3cb4
commit 7b84e4c356
9 changed files with 28 additions and 4 deletions

View File

@@ -363,7 +363,10 @@ void wxObject::UnRef()
wxASSERT_MSG( m_refData->m_count > 0, _T("invalid ref data count") );
if ( !--m_refData->m_count )
#if (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
// Until we figure this out
delete m_refData;
#endif
m_refData = (wxObjectRefData *) NULL;
}
}