diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:03:56 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-25 14:03:56 +0000 |
commit | db15e9290e8e966edc83393c2abc793bcd954193 (patch) | |
tree | 44c033eda5dfd189be1edb6b441faf37afa70f82 /dbaccess | |
parent | f2a817edb0f31f65111544b57ee1bccc1a8d60a3 (diff) |
coverity#1266514 Useless call
Change-Id: I2a95e2faa7682934cd69264c82ed2618225be2a7
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/SingleSelectQueryComposer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx index f8f8c2b93410..f4b765b7c36d 100644 --- a/dbaccess/source/core/api/SingleSelectQueryComposer.cxx +++ b/dbaccess/source/core/api/SingleSelectQueryComposer.cxx @@ -1660,7 +1660,7 @@ void OSingleSelectQueryComposer::setConditionByColumn( const Reference< XPropert const sal_Int8* pEnd = pBegin + aSeq.getLength(); for(;pBegin != pEnd;++pBegin) { - aSQL.append( (sal_Int32)*pBegin, 16 ).getStr(); + aSQL.append( (sal_Int32)*pBegin, 16 ); } if(nSearchable == ColumnSearch::CHAR) aSQL.append( "\'" ); |