summaryrefslogtreecommitdiff
path: root/sax/source/expatwrap/saxwriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/expatwrap/saxwriter.cxx')
-rw-r--r--sax/source/expatwrap/saxwriter.cxx36
1 files changed, 18 insertions, 18 deletions
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx
index 1bd84f93f9e7..1ff1ec7ee3b5 100644
--- a/sax/source/expatwrap/saxwriter.cxx
+++ b/sax/source/expatwrap/saxwriter.cxx
@@ -891,7 +891,7 @@ public:
public: // XActiveDataSource
virtual void SAL_CALL setOutputStream(const Reference< XOutputStream > & aStream)
- throw (RuntimeException, std::exception)
+ throw (RuntimeException, std::exception) SAL_OVERRIDE
{
// temporary: set same stream again to clear buffer
if ( m_out == aStream && m_pSaxWriterHelper && m_bDocStarted )
@@ -909,48 +909,48 @@ public: // XActiveDataSource
}
}
virtual Reference< XOutputStream > SAL_CALL getOutputStream(void)
- throw(RuntimeException, std::exception)
+ throw(RuntimeException, std::exception) SAL_OVERRIDE
{ return m_out; }
public: // XDocumentHandler
virtual void SAL_CALL startDocument(void)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL endDocument(void)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL startElement(const OUString& aName,
const Reference< XAttributeList > & xAttribs)
- throw (SAXException, RuntimeException, std::exception);
+ throw (SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL endElement(const OUString& aName)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL characters(const OUString& aChars)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL processingInstruction(const OUString& aTarget,
const OUString& aData)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL setDocumentLocator(const Reference< XLocator > & xLocator)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
public: // XExtendedDocumentHandler
- virtual void SAL_CALL startCDATA(void) throw(SAXException, RuntimeException, std::exception);
- virtual void SAL_CALL endCDATA(void) throw(SAXException,RuntimeException, std::exception);
+ virtual void SAL_CALL startCDATA(void) throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual void SAL_CALL endCDATA(void) throw(SAXException,RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL comment(const OUString& sComment)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL unknown(const OUString& sString)
- throw(SAXException, RuntimeException, std::exception);
+ throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL allowLineBreak(void)
- throw(SAXException,RuntimeException, std::exception);
+ throw(SAXException,RuntimeException, std::exception) SAL_OVERRIDE;
public: // XServiceInfo
- OUString SAL_CALL getImplementationName() throw(std::exception);
- Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw(std::exception);
- sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception);
+ OUString SAL_CALL getImplementationName() throw(std::exception) SAL_OVERRIDE;
+ Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw(std::exception) SAL_OVERRIDE;
+ sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception) SAL_OVERRIDE;
private: