diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-24 11:22:56 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-08-24 11:30:17 +0900 |
commit | e1a1091d0ae61ba46c6d063a92db0b7d1ce65942 (patch) | |
tree | 5cd7f5ba6ad9fc1e859263332b4f96167ac927ce /basic/source/runtime/comenumwrapper.cxx | |
parent | 8dfa38c418125ad880e9d4b2a968f0f1778d6de4 (diff) |
catch ignored exceptions by const reference
Diffstat (limited to 'basic/source/runtime/comenumwrapper.cxx')
-rw-r--r-- | basic/source/runtime/comenumwrapper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/comenumwrapper.cxx b/basic/source/runtime/comenumwrapper.cxx index ba3def41838f..45e3a5f45376 100644 --- a/basic/source/runtime/comenumwrapper.cxx +++ b/basic/source/runtime/comenumwrapper.cxx @@ -45,7 +45,7 @@ using namespace ::com::sun::star; && nLength > m_nCurInd ); } } - catch( uno::Exception& ) + catch(const uno::Exception& ) {} return bResult; @@ -72,7 +72,7 @@ uno::Any SAL_CALL ComEnumerationWrapper::nextElement() aNamedParam ); } } - catch( uno::Exception& ) + catch(const uno::Exception& ) {} throw container::NoSuchElementException(); |