#99549# corrected the previous fix - don't use m_bDisposed, but rBHelper.bDisposed

This commit is contained in:
Frank Schönheit 2002-06-05 07:15:05 +00:00
parent 1525ca54b5
commit 72f8981997

View file

@ -2,9 +2,9 @@
*
* $RCSfile: genericcontroller.cxx,v $
*
* $Revision: 1.38 $
* $Revision: 1.39 $
*
* last change: $Author: oj $ $Date: 2002-05-28 09:52:54 $
* last change: $Author: fs $ $Date: 2002-06-05 08:15:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -217,7 +217,7 @@ sal_Bool OGenericUnoController::Construct(Window* pParent)
//------------------------------------------------------------------------------
IMPL_LINK(OGenericUnoController, OnAsyncInvalidateAll, void*, EMPTYARG)
{
if ( !OGenericUnoController_COMPBASE::rBHelper.bInDispose && !m_bDisposed )
if ( !OGenericUnoController_COMPBASE::rBHelper.bInDispose && !OGenericUnoController_COMPBASE::rBHelper.bDisposed )
InvalidateFeature_Impl();
return 0L;
}