summaryrefslogtreecommitdiff
path: root/svl/qa/complex
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 /svl/qa/complex
parent32fa7e9208b2053d2ff7743b88b0c0edacb8a7e7 (diff)
Fixed cppcheck messages about rethrowing copy of exception.
Diffstat (limited to 'svl/qa/complex')
-rw-r--r--svl/qa/complex/ConfigItems/helper/HistoryOptTest.cxx4
1 files changed, 2 insertions, 2 deletions
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;
}
}