I imagine this should have a SAL_CALL decoration

Change-Id: I04d50eb44156e4b2476c237848491cda73b9ef0a
This commit is contained in:
Caolán McNamara
2014-03-04 20:34:53 +00:00
parent b229d16cd9
commit 62d6252d2c

View File

@@ -57,7 +57,7 @@ struct Listener : public ::cppu::WeakImplHelper1<io::XStreamListener>
Listener() : m_bDone(false) {}
virtual void disposing(const lang::EventObject&) throw() SAL_OVERRIDE {}
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; }