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. --- svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'svl/qa') diff --git a/svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx b/svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx index dde561d08406..818e3e417d7a 100644 --- a/svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx +++ b/svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx @@ -169,10 +169,10 @@ void HistoryOptTest::impl_testHistory(EHistoryType eHistory , // without problems :-) impl_clearList(); } - catch (const css::uno::Exception& ex) + catch (const css::uno::Exception&) { impl_clearList(); - throw ex; + throw; } } -- cgit