diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-22 11:44:47 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-22 12:50:49 +0200 |
commit | 2763456851bc46c26d7a23625243897ee54f240d (patch) | |
tree | ef31f51018454ca0705004657dac3b6b15189628 | |
parent | 2edb7adaaf4cf223e9549def4e513df9e8a5311a (diff) |
cppcheck: Variable 'fOutNumber' is assigned a value that is never used
Change-Id: Idb5e4ae3266ab714c392abca76993c3037fea7b2
-rw-r--r-- | dbaccess/source/ui/misc/DExport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/misc/DExport.cxx b/dbaccess/source/ui/misc/DExport.cxx index fa757a0dd97f..6b89dfabd25e 100644 --- a/dbaccess/source/ui/misc/DExport.cxx +++ b/dbaccess/source/ui/misc/DExport.cxx @@ -437,7 +437,7 @@ sal_Int16 ODatabaseExport::CheckString(const OUString& aCheckToken, sal_Int16 _n { Reference<XNumberFormatTypes> xNumType(xFormats,UNO_QUERY); sal_Int32 nFormatKey = m_xFormatter->detectNumberFormat(xNumType->getStandardFormat(NumberFormat::ALL,m_aLocale),aCheckToken); - fOutNumber = m_xFormatter->convertStringToNumber(nFormatKey,aCheckToken); + m_xFormatter->convertStringToNumber(nFormatKey,aCheckToken); Reference<XPropertySet> xProp = xFormats->getByKey(nFormatKey); sal_Int16 nType = 0; |