From 7d7f91aead9af7e0d3d262663dea4b3c96c3072b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 6 Mar 2014 11:32:46 +0000 Subject: coverity#1190366 Uncaught exception Change-Id: I18e732d8818ea9b6c0837b0df2bd58cb13066ec6 --- filter/qa/cppunit/xslt-test.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'filter/qa') diff --git a/filter/qa/cppunit/xslt-test.cxx b/filter/qa/cppunit/xslt-test.cxx index 3708e319a7d5..1a580d0b36a2 100644 --- a/filter/qa/cppunit/xslt-test.cxx +++ b/filter/qa/cppunit/xslt-test.cxx @@ -61,7 +61,7 @@ struct Listener : public ::cppu::WeakImplHelper1 virtual void SAL_CALL started() throw() SAL_OVERRIDE { m_bDone = false; } virtual void SAL_CALL closed() throw() SAL_OVERRIDE { m_bDone = true; } virtual void SAL_CALL terminated() throw() SAL_OVERRIDE { m_bDone = true; } - virtual void SAL_CALL error(const uno::Any& e) throw() SAL_OVERRIDE + virtual void SAL_CALL error(const uno::Any& e) throw(uno::RuntimeException, std::exception) SAL_OVERRIDE { m_bDone = true; // set on error too, otherwise main thread waits forever SAL_WARN("filter.xslt", "exception " << e); -- cgit