summaryrefslogtreecommitdiffstats
path: root/svtools
diff options
context:
space:
mode:
authorPKEuS <philipp.kloke@web.de>2012-02-05 11:53:47 +0100
committerJulien Nabet <serval2412@yahoo.fr>2012-02-05 14:29:54 +0100
commitba5a460bc15393cc64522f288b7b2b678d6fcc99 (patch)
treea4a322e415f301aa5d253f6578983d7ca5cbce72 /svtools
parentfdo#42656 fix RTF export of picture frame shape type (diff)
downloadcore-ba5a460bc15393cc64522f288b7b2b678d6fcc99.tar.gz
core-ba5a460bc15393cc64522f288b7b2b678d6fcc99.zip
Fixed cppcheck messages about rethrowing copy of exception.
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/config/itemholder2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/config/itemholder2.cxx b/svtools/source/config/itemholder2.cxx
index 9e9a1ab8ced3..0811e40d4bda 100644
--- a/svtools/source/config/itemholder2.cxx
+++ b/svtools/source/config/itemholder2.cxx
@@ -69,9 +69,9 @@ ItemHolder2::ItemHolder2()
if (xCfg.is())
xCfg->addEventListener(static_cast< css::lang::XEventListener* >(this));
}
- catch(const css::uno::RuntimeException& rREx)
+ catch(const css::uno::RuntimeException&)
{
- throw rREx;
+ throw;
}
#ifdef DBG_UTIL
catch(const css::uno::Exception& rEx)