summaryrefslogtreecommitdiff
path: root/filter/qa/cppunit/xslt-test.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/qa/cppunit/xslt-test.cxx')
-rw-r--r--filter/qa/cppunit/xslt-test.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/filter/qa/cppunit/xslt-test.cxx b/filter/qa/cppunit/xslt-test.cxx
index a424c989c148..6c696801be07 100644
--- a/filter/qa/cppunit/xslt-test.cxx
+++ b/filter/qa/cppunit/xslt-test.cxx
@@ -57,11 +57,11 @@ struct Listener : public ::cppu::WeakImplHelper<io::XStreamListener>
Listener() : m_bDone(false) {}
- virtual void SAL_CALL disposing(const lang::EventObject&) throw() SAL_OVERRIDE {}
- 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(uno::RuntimeException, std::exception) SAL_OVERRIDE
+ virtual void SAL_CALL disposing(const lang::EventObject&) throw() override {}
+ virtual void SAL_CALL started() throw() override { m_bDone = false; }
+ virtual void SAL_CALL closed() throw() override { m_bDone = true; }
+ virtual void SAL_CALL terminated() throw() override { m_bDone = true; }
+ virtual void SAL_CALL error(const uno::Any& e) throw(uno::RuntimeException, std::exception) override
{
m_bDone = true; // set on error too, otherwise main thread waits forever
SAL_WARN("filter.xslt", "exception " << e);