diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-27 17:19:58 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-28 14:00:04 +0100 |
commit | 4c400707ff52f353d8cfa7ce54ac0cf26d64c51f (patch) | |
tree | e8eccc2ccb6ca28c5a2ec6351b8000ac983c3604 /connectivity/source | |
parent | 2dd5b6e256a1d07d677080b202d2dbe6f27f26ee (diff) |
-Werror,-Wunused-variable
Change-Id: I23b4532cffbc9152a36f7f4cfadfc016c93f2706
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/drivers/ado/APreparedStatement.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/connectivity/source/drivers/ado/APreparedStatement.cxx b/connectivity/source/drivers/ado/APreparedStatement.cxx index 2e581fe873ad..aea1232e5925 100644 --- a/connectivity/source/drivers/ado/APreparedStatement.cxx +++ b/connectivity/source/drivers/ado/APreparedStatement.cxx @@ -219,11 +219,6 @@ void OPreparedStatement::setParameter(sal_Int32 parameterIndex, const DataTypeEn WpADOParameter aParam(pParam); if(pParam) { -#if OSL_DEBUG_LEVEL > 0 - OUString sParam = aParam.GetName(); - -#endif // OSL_DEBUG_LEVEL - DataTypeEnum eType = aParam.GetADOType(); if ( _eType != eType && _eType != adDBTimeStamp ) { @@ -438,7 +433,6 @@ void SAL_CALL OPreparedStatement::clearParameters( ) throw(SQLException, Runtim WpADOParameter aParam(pParam); if(pParam) { - OUString sParam = aParam.GetName(); CHECK_RETURN(aParam.PutValue(aVal)); } } |