summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2000-12-14 11:20:00 +0000
committerMathias Bauer <mba@openoffice.org>2000-12-14 11:20:00 +0000
commit439f82351de642ff207c7abd1ec14a26f503dae6 (patch)
tree14b54e8ea70e2f47f6c6624283f934c9fc235c9c /toolkit
parent1da0346e80cb10944258cd41dfacc5ce8d816f47 (diff)
#81958#: remove hack for invisible parents
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxwindow.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index f4d2f72e205e..332dd86de237 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxwindow.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:02:09 $
+ * last change: $Author: mba $ $Date: 2000-12-14 12:20:00 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -230,6 +230,7 @@ void VCLXWindow::setVisible( sal_Bool bVisible ) throw(::com::sun::star::uno::Ru
Window* pWindow = GetWindow();
if ( pWindow )
{
+/*
if ( bVisible )
{
// #57167# TopWindows mit unsichtbaren Parent anzeigen...
@@ -241,7 +242,7 @@ void VCLXWindow::setVisible( sal_Bool bVisible ) throw(::com::sun::star::uno::Ru
pWindow->SetParent( pWindow->GetWindow( WINDOW_FRAME ) );
}
}
-
+*/
pWindow->Show( bVisible );
}
}