diff options
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxwindows.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx index 8e80a5254359..a30695d5afd5 100644 --- a/toolkit/source/awt/vclxwindows.cxx +++ b/toolkit/source/awt/vclxwindows.cxx @@ -4374,12 +4374,12 @@ void VCLXComboBox::setProperty( const OUString& PropertyName, const ::com::sun:: { sal_Int16 n = sal_Int16(); if ( Value >>= n ) - pComboBox->EnableAutocomplete( n != 0 ); + pComboBox->EnableAutocomplete( n != 0, true ); else { bool b = bool(); if ( Value >>= b ) - pComboBox->EnableAutocomplete( b ); + pComboBox->EnableAutocomplete( b, true ); } } break; |