summaryrefslogtreecommitdiff
path: root/toolkit/source
diff options
context:
space:
mode:
authorMalte Timmermann <mt@openoffice.org>2002-10-11 07:55:48 +0000
committerMalte Timmermann <mt@openoffice.org>2002-10-11 07:55:48 +0000
commitf84f343dd419e74bd514095b5700a1a88f3f7707 (patch)
tree3f6e3a5b8085bc352d9007c1b3819aff46249bf1 /toolkit/source
parentfdd5b0348412cc7cf066daaafa8da2a90cfbbabd (diff)
#103939# Don't through assertion, may be it's a system dependend window, used in ImplCreateWindow
Diffstat (limited to 'toolkit/source')
-rw-r--r--toolkit/source/awt/vclxtoolkit.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxtoolkit.cxx b/toolkit/source/awt/vclxtoolkit.cxx
index 55f9c53ca86c..72bf842fce48 100644
--- a/toolkit/source/awt/vclxtoolkit.cxx
+++ b/toolkit/source/awt/vclxtoolkit.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxtoolkit.cxx,v $
*
- * $Revision: 1.28 $
+ * $Revision: 1.29 $
*
- * last change: $Author: obr $ $Date: 2002-08-23 12:44:15 $
+ * last change: $Author: mt $ $Date: 2002-10-11 08:55:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -570,7 +570,8 @@ void SAL_CALL VCLXToolkit::disposing()
{
VCLXWindow* pParentComponent = VCLXWindow::GetImplementation( rDescriptor.Parent );
- DBG_ASSERT( pParentComponent, "ParentComponent not valid" );
+ // #103939# Don't through assertion, may be it's a system dependend window, used in ImplCreateWindow.
+ // DBG_ASSERT( pParentComponent, "ParentComponent not valid" );
if ( pParentComponent )
pParent = pParentComponent->GetWindow();