diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-20 12:06:48 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-12-20 12:07:50 +0900 |
commit | 1f2fd91bf1acc4b6e0b102738c319ce074b7faf7 (patch) | |
tree | 6b066dc32fdbac18dd6dea3cadb5999860412b7b /linguistic/source/dicimp.cxx | |
parent | add0b7de36f4b0d133906fdd9647d742c33dd63b (diff) |
catch exception by constant reference
Diffstat (limited to 'linguistic/source/dicimp.cxx')
-rw-r--r-- | linguistic/source/dicimp.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx index 6d7d1c6672eb..3f6257cc2bc9 100644 --- a/linguistic/source/dicimp.cxx +++ b/linguistic/source/dicimp.cxx @@ -284,10 +284,9 @@ sal_uLong DictionaryNeo::loadEntries(const OUString &rMainURL) A2OU( "com.sun.star.ucb.SimpleFileAccess" ) ), uno::UNO_QUERY_THROW ); xStream = xAccess->openFileRead( rMainURL ); } - catch (uno::Exception & e) + catch (const uno::Exception &) { DBG_ASSERT( 0, "failed to get input stream" ); - (void) e; } if (!xStream.is()) return static_cast< sal_uLong >(-1); @@ -427,10 +426,9 @@ sal_uLong DictionaryNeo::saveEntries(const OUString &rURL) A2OU( "com.sun.star.ucb.SimpleFileAccess" ) ), uno::UNO_QUERY_THROW ); xStream = xAccess->openFileReadWrite( rURL ); } - catch (uno::Exception & e) + catch (const uno::Exception &) { DBG_ASSERT( 0, "failed to get input stream" ); - (void) e; } if (!xStream.is()) return static_cast< sal_uLong >(-1); |