WaE: unreferenced local variable

This commit is contained in:
Tor Lillqvist
2011-10-04 17:19:36 +03:00
parent 9c28c7d66b
commit 73a038df37
2 changed files with 3 additions and 3 deletions

View File

@@ -792,7 +792,7 @@ sal_Bool SAL_CALL CachedContentResultSet
return bValid;
}
}
catch (const SQLException& rEx)
catch (const SQLException&)
{
if( !bAfterLastApplied && !bAfterLast && nRow > nLastAppliedPos && impl_isForwardOnly() )
{

View File

@@ -613,7 +613,7 @@ void SAL_CALL ContentResultSetWrapper
m_xPropertySetOrigin->addPropertyChangeListener(
OUString(), static_cast< XPropertyChangeListener * >( m_pMyListenerImpl ) );
}
catch( Exception& rEx )
catch( Exception& )
{
m_pPropertyChangeListeners->removeInterface( aPropertyName, xListener );
throw;
@@ -664,7 +664,7 @@ void SAL_CALL ContentResultSetWrapper
m_xPropertySetOrigin->addVetoableChangeListener(
OUString(), static_cast< XVetoableChangeListener * >( m_pMyListenerImpl ) );
}
catch( Exception& rEx )
catch( Exception& )
{
m_pVetoableChangeListeners->removeInterface( rPropertyName, xListener );
throw;