summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/genericcontroller.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-05-28 08:52:54 +0000
committerOcke Janssen <oj@openoffice.org>2002-05-28 08:52:54 +0000
commit575f99890cba0e4daf8b214699c1da2807599020 (patch)
tree62d1c6d4c44d8d3db3d2b18c5cde887a28df3b31 /dbaccess/source/ui/browser/genericcontroller.cxx
parentb35c6e067379719d43e74516f38426c653c97f04 (diff)
#99549# check if we are already disposed before invalidate all slots
Diffstat (limited to 'dbaccess/source/ui/browser/genericcontroller.cxx')
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index 624c941b2d38..2cdce83caf2c 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: genericcontroller.cxx,v $
*
- * $Revision: 1.37 $
+ * $Revision: 1.38 $
*
- * last change: $Author: fs $ $Date: 2002-05-23 12:28:31 $
+ * last change: $Author: oj $ $Date: 2002-05-28 09:52:54 $
*
* 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)
+ if ( !OGenericUnoController_COMPBASE::rBHelper.bInDispose && !m_bDisposed )
InvalidateFeature_Impl();
return 0L;
}