summaryrefslogtreecommitdiff
path: root/toolkit/source/awt/vclxwindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/source/awt/vclxwindow.cxx')
-rw-r--r--toolkit/source/awt/vclxwindow.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/toolkit/source/awt/vclxwindow.cxx b/toolkit/source/awt/vclxwindow.cxx
index 502af4ac362b..91e412b14756 100644
--- a/toolkit/source/awt/vclxwindow.cxx
+++ b/toolkit/source/awt/vclxwindow.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: vclxwindow.cxx,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: mt $ $Date: 2001-11-29 19:34:16 $
+ * last change: $Author: mt $ $Date: 2001-12-06 16:08:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -871,7 +871,11 @@ void VCLXWindow::setProperty( const ::rtl::OUString& PropertyName, const ::com::
{
sal_Bool b;
if ( Value >>= b )
- pWindow->Enable( b );
+ {
+ pWindow->Enable( b, FALSE ); // without children!
+ if ( ( eWinType == WINDOW_DIALOG ) || ( eWinType == WINDOW_MODALDIALOG ) || ( eWinType == WINDOW_MODELESSDIALOG ) )
+ pWindow->EnableInput( b );
+ }
}
break;
case BASEPROPERTY_TEXT: