diff options
author | PKEuS <philipp.kloke@web.de> | 2012-02-05 11:53:47 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2012-02-05 14:29:54 +0100 |
commit | ba5a460bc15393cc64522f288b7b2b678d6fcc99 (patch) | |
tree | a4a322e415f301aa5d253f6578983d7ca5cbce72 /cui/source | |
parent | 32fa7e9208b2053d2ff7743b88b0c0edacb8a7e7 (diff) |
Fixed cppcheck messages about rethrowing copy of exception.
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/customize/cfg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx index 769789e16f93..de3ed22d4447 100644 --- a/cui/source/customize/cfg.cxx +++ b/cui/source/customize/cfg.cxx @@ -471,9 +471,9 @@ OUString GetUIModuleName( const OUString& aModuleId, const uno::Reference< css:: } } } - catch ( uno::RuntimeException& e ) + catch ( uno::RuntimeException& ) { - throw e; + throw; } catch ( uno::Exception& ) { |