[Libreoffice-commits] core.git: Branch 'libreoffice-4-4' - toolkit/source
Lionel Elie Mamane
lionel at mamane.lu
Thu Oct 8 23:47:11 PDT 2015
toolkit/source/awt/vclxwindows.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 75c3395de205fda16054e70d1dd296ffdc603426
Author: Lionel Elie Mamane <lionel at mamane.lu>
Date: Fri Oct 9 08:44:27 2015 +0200
Related tdf#94557: Combo box entries are case-sensitive (sometimes)
Revert partly http://cgit.freedesktop.org/libreoffice/core/commit/?id=76f33f10309b0ee384a75a7a854858b068d60495
author Julien Nabet <serval2412 at yahoo.fr> 2015-03-16 21:31:23 (GMT)
committer Caolán McNamara <caolanm at redhat.com> 2015-03-26 14:14:44 (GMT)
commit 76f33f10309b0ee384a75a7a854858b068d60495 (patch)
tree e12e3b6f2ca46cb9998b93b5c1bb3406408ad3cb
tdf#67990: Management of case in combobox
See comments of tdf#94557 for more information
More conservative version of this commit for libreoffice-4-4 branch.
Change-Id: Ie634032b51688939216c8671c5e20f00bd67a33c
diff --git a/toolkit/source/awt/vclxwindows.cxx b/toolkit/source/awt/vclxwindows.cxx
index e93095a..002ef31 100644
--- a/toolkit/source/awt/vclxwindows.cxx
+++ b/toolkit/source/awt/vclxwindows.cxx
@@ -4368,12 +4368,12 @@ void VCLXComboBox::setProperty( const OUString& PropertyName, const ::com::sun::
{
sal_Int16 n = sal_Int16();
if ( Value >>= n )
- pComboBox->EnableAutocomplete( n != 0, true );
+ pComboBox->EnableAutocomplete( n != 0 );
else
{
bool b = bool();
if ( Value >>= b )
- pComboBox->EnableAutocomplete( b, true );
+ pComboBox->EnableAutocomplete( b );
}
}
break;
More information about the Libreoffice-commits
mailing list