diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-05-09 17:03:50 +0200 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2022-05-09 18:30:35 +0200 |
commit | 7251f9c1b840721b5ba1f1d5f8b65b405260945b (patch) | |
tree | 51de09f991fd2dfba9f1177e64daf7bb65f69514 | |
parent | 57b58d4fb85579a9aacbd6b2d7e389cce46f5fbc (diff) |
basic: remove commented out line
Introduced in 90d33f5945336fa46b7c02f425100af794768b15
"tdf#148358 - Compare Non-ASCII variable names case-insensitive"
Change-Id: I5bccb3f2f54ac61f2fbf960e78e3d4e4a0893f85
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134081
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | basic/source/sbx/sbxarray.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxarray.cxx b/basic/source/sbx/sbxarray.cxx index 5f70345e6f2a..53c0ed36fa73 100644 --- a/basic/source/sbx/sbxarray.cxx +++ b/basic/source/sbx/sbxarray.cxx @@ -277,7 +277,6 @@ SbxVariable* SbxArray::Find( const OUString& rName, SbxClassType t ) return nullptr; bool bExtSearch = IsSet( SbxFlagBits::ExtSearch ); sal_uInt16 nHash = SbxVariable::MakeHashCode( rName ); - //const OUString aNameCI = SbxVariable::NameToCaseInsensitiveName(rName); const OUString aNameCI = SbxVariable::NameToCaseInsensitiveName(rName); for (auto& rEntry : mVarEntries) { |