From ba5a460bc15393cc64522f288b7b2b678d6fcc99 Mon Sep 17 00:00:00 2001 From: PKEuS Date: Sun, 5 Feb 2012 11:53:47 +0100 Subject: Fixed cppcheck messages about rethrowing copy of exception. --- svtools/source/config/itemholder2.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svtools') 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) -- cgit