diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-02-27 06:47:14 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-02-27 07:01:11 +0100 |
commit | a4322a23a90320f013169d9c925b8a6387f3d50a (patch) | |
tree | 1dd52dcd3f0c52bee7913f2084ff3ed6796f0387 | |
parent | 0c878187501586072eb74b2867417283bc47fe8c (diff) |
janitorial: save one object
Change-Id: I52b7d8204bb2d34639dea544833318fe86a5ddcf
-rw-r--r-- | dbaccess/source/core/api/KeySet.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx index ff036af5cfcc..6970db27ca56 100644 --- a/dbaccess/source/core/api/KeySet.cxx +++ b/dbaccess/source/core/api/KeySet.cxx @@ -1641,9 +1641,7 @@ void getColumnPositions(const Reference<XNameAccess>& _rxQueryColumns, const OUString* pTblColumnIter = _aColumnNames.getConstArray(); const OUString* pTblColumnEnd = pTblColumnIter + _aColumnNames.getLength(); - - ::comphelper::UStringMixLess aTmp(o_rColumnNames.key_comp()); - ::comphelper::UStringMixEqual bCase(aTmp.isCaseSensitive()); + ::comphelper::UStringMixEqual bCase(o_rColumnNames.key_comp().isCaseSensitive()); for(sal_Int32 nPos = 1;pSelIter != pSelEnd;++pSelIter,++nPos) { |