diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-18 00:49:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 11:08:37 +0100 |
commit | dfcb6799d7ec99e8cdcab344ffd92dc8c13c17b0 (patch) | |
tree | 89bd2bcaeeb96acbd442a3a395c22614d0529797 /dtrans/source | |
parent | 86e420075cfc47c21a8c755e10507f018c3ce925 (diff) |
catch by const reference
Diffstat (limited to 'dtrans/source')
-rw-r--r-- | dtrans/source/generic/clipboardmanager.cxx | 3 | ||||
-rw-r--r-- | dtrans/source/test/test_dtrans.cxx | 4 |
2 files changed, 3 insertions, 4 deletions
diff --git a/dtrans/source/generic/clipboardmanager.cxx b/dtrans/source/generic/clipboardmanager.cxx index 5fdc78b19f4a..d6dc32226037 100644 --- a/dtrans/source/generic/clipboardmanager.cxx +++ b/dtrans/source/generic/clipboardmanager.cxx @@ -219,8 +219,7 @@ void SAL_CALL ClipboardManager::dispose() xComponent->removeEventListener(static_cast < XEventListener * > (this)); xComponent->dispose(); } - - catch(Exception e) + catch (const Exception&) { // exceptions can be safely ignored here. } diff --git a/dtrans/source/test/test_dtrans.cxx b/dtrans/source/test/test_dtrans.cxx index 3bb0966e286d..d1a2611ca93c 100644 --- a/dtrans/source/test/test_dtrans.cxx +++ b/dtrans/source/test/test_dtrans.cxx @@ -465,13 +465,13 @@ int SAL_CALL main( int argc, const char* argv[] ) xClipboardManager->getClipboard( OUString(RTL_CONSTASCII_USTRINGPARAM("generic")) ); TRACE( "FAILED\n" ); } - catch( NoSuchElementException e ) + catch (const NoSuchElementException&) { TRACE( "passed\n" ); } } - catch ( Exception aException ) + catch (const Exception&) { ENSURE( sal_False, "*** ERROR *** exception caught." ); } |