diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-26 13:26:30 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-26 13:26:30 +0300 |
commit | 45a5fdc7355ba7f6b94e9d754cbe3c39ebfbbaf1 (patch) | |
tree | 648e940b9337285ce89cd6c6b28c0d4ce77a87cd /dbaccess | |
parent | 94f9419aecd3715e23a9a19374bd4e1dd404f4f1 (diff) |
WaE: unreferenced local variable
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/core/api/RowSet.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx index c74d75e03291..c2a38127e62f 100644 --- a/dbaccess/source/core/api/RowSet.cxx +++ b/dbaccess/source/core/api/RowSet.cxx @@ -2184,11 +2184,11 @@ Reference< XConnection > ORowSet::calcConnection(const Reference< XInteractionH xNewConn = xDataSource->getConnection( m_aUser, m_aPassword ); } } - catch ( const SQLException& e ) + catch ( const SQLException& ) { throw; } - catch ( const Exception& e ) + catch ( const Exception& ) { Any aError = ::cppu::getCaughtException(); ::rtl::OUString sMessage = ResourceManager::loadString( RID_NO_SUCH_DATA_SOURCE, |