summaryrefslogtreecommitdiff
path: root/framework/source
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2001-08-22 07:13:27 +0000
committerMathias Bauer <mba@openoffice.org>2001-08-22 07:13:27 +0000
commit8fe47341fe5a9ff2be3ab022e4175d7d89a0f08b (patch)
tree5494a09b2d962132615318f6142101b51c719c88 /framework/source
parent75c39e270127c77e5660603f970066940a3fb919 (diff)
#91125#: errornous zombie removal removed
Diffstat (limited to 'framework/source')
-rw-r--r--framework/source/classes/framecontainer.cxx17
1 files changed, 2 insertions, 15 deletions
diff --git a/framework/source/classes/framecontainer.cxx b/framework/source/classes/framecontainer.cxx
index 630919a27254..fe78efc3dbd3 100644
--- a/framework/source/classes/framecontainer.cxx
+++ b/framework/source/classes/framecontainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: framecontainer.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: as $ $Date: 2001-06-11 10:27:02 $
+ * last change: $Author: mba $ $Date: 2001-08-22 08:13:27 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -207,19 +207,6 @@ void FrameContainer::remove( const Reference< XFrame >& xFrame )
m_xActiveFrame = Reference< XFrame >();
}
- // looking for zombies ... and deletion of it!
- for( sal_uInt32 nIndex=0; nIndex<m_aContainer.size(); )
- {
- if( m_aContainer.at(nIndex)->getComponentWindow().is() == sal_False )
- {
- m_aContainer.erase( m_aContainer.begin() + nIndex );
- }
- else
- {
- ++nIndex;
- }
- }
-
// We don't need the write lock any longer ...
// downgrade to read access.
aWriteLock.downgrade();