adjusting refcount asserts
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45735 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -66,7 +66,8 @@ END_EVENT_TABLE()
|
||||
// when this view is removed from the native toolbar its count gets decremented again
|
||||
// and when the HITooolbarItem wrapper object gets destroyed it is decremented as well
|
||||
// so in the end the control lives with a refcount of one and can be disposed of by the
|
||||
// wxControl code
|
||||
// wxControl code. For embedded controls on a non-native toolbar this ref count is less
|
||||
// so we can only test against a range, not a specific value of the refcount.
|
||||
|
||||
class wxToolBarTool : public wxToolBarToolBase
|
||||
{
|
||||
@@ -641,7 +642,6 @@ static pascal OSStatus ControlToolbarItemHandler( EventHandlerCallRef inCallRef,
|
||||
case kEventHIObjectDestruct:
|
||||
{
|
||||
HIViewRef viewRef = object->viewRef ;
|
||||
wxASSERT( IsValidControlHandle(viewRef) ) ;
|
||||
if( viewRef && IsValidControlHandle( viewRef) )
|
||||
{
|
||||
// depending whether the wxControl corresponding to this HIView has already been destroyed or
|
||||
@@ -1189,7 +1189,7 @@ bool wxToolBar::Realize()
|
||||
if ( tool2->IsControl() )
|
||||
{
|
||||
CFIndex count = CFGetRetainCount( tool2->GetControl()->GetPeer()->GetControlRef() ) ;
|
||||
wxASSERT_MSG( count == 3 , wxT("Reference Count of native tool was not 3 before removal") );
|
||||
wxASSERT_MSG( count == 3 || count == 2 , wxT("Reference Count of native tool was illegal before removal") );
|
||||
wxASSERT( IsValidControlHandle(tool2->GetControl()->GetPeer()->GetControlRef() )) ;
|
||||
}
|
||||
err = HIToolbarRemoveItemAtIndex((HIToolbarRef) m_macHIToolbarRef, idx);
|
||||
@@ -1221,7 +1221,7 @@ bool wxToolBar::Realize()
|
||||
if ( tool->IsControl() )
|
||||
{
|
||||
CFIndex count = CFGetRetainCount( tool->GetControl()->GetPeer()->GetControlRef() ) ;
|
||||
wxASSERT_MSG( count == 3 , wxT("Reference Count of native tool was not 3 after insertion") );
|
||||
wxASSERT_MSG( count == 3 || count == 2, wxT("Reference Count of native tool was illegal after insertion") );
|
||||
wxASSERT( IsValidControlHandle(tool->GetControl()->GetPeer()->GetControlRef() )) ;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user