diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /sax/source/expatwrap/saxwriter.cxx | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'sax/source/expatwrap/saxwriter.cxx')
-rw-r--r-- | sax/source/expatwrap/saxwriter.cxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sax/source/expatwrap/saxwriter.cxx b/sax/source/expatwrap/saxwriter.cxx index 42151196990d..9c5b94f53301 100644 --- a/sax/source/expatwrap/saxwriter.cxx +++ b/sax/source/expatwrap/saxwriter.cxx @@ -890,7 +890,7 @@ public: public: // XActiveDataSource virtual void SAL_CALL setOutputStream(const Reference< XOutputStream > & aStream) - throw (RuntimeException, std::exception) SAL_OVERRIDE + throw (RuntimeException, std::exception) override { try { @@ -916,50 +916,50 @@ public: // XActiveDataSource } } virtual Reference< XOutputStream > SAL_CALL getOutputStream() - throw(RuntimeException, std::exception) SAL_OVERRIDE + throw(RuntimeException, std::exception) override { return m_out; } public: // XDocumentHandler virtual void SAL_CALL startDocument() - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL startElement(const OUString& aName, const Reference< XAttributeList > & xAttribs) - throw (SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL endElement(const OUString& aName) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL characters(const OUString& aChars) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace(const OUString& aWhitespaces) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction(const OUString& aTarget, const OUString& aData) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator(const Reference< XLocator > & xLocator) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; public: // XExtendedDocumentHandler - virtual void SAL_CALL startCDATA() throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; - virtual void SAL_CALL endCDATA() throw(SAXException,RuntimeException, std::exception) SAL_OVERRIDE; + virtual void SAL_CALL startCDATA() throw(SAXException, RuntimeException, std::exception) override; + virtual void SAL_CALL endCDATA() throw(SAXException,RuntimeException, std::exception) override; virtual void SAL_CALL comment(const OUString& sComment) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL unknown(const OUString& sString) - throw(SAXException, RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException, RuntimeException, std::exception) override; virtual void SAL_CALL allowLineBreak() - throw(SAXException,RuntimeException, std::exception) SAL_OVERRIDE; + throw(SAXException,RuntimeException, std::exception) override; public: // XServiceInfo - OUString SAL_CALL getImplementationName() throw(std::exception) SAL_OVERRIDE; - Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(std::exception) SAL_OVERRIDE; - sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception) SAL_OVERRIDE; + OUString SAL_CALL getImplementationName() throw(std::exception) override; + Sequence< OUString > SAL_CALL getSupportedServiceNames() throw(std::exception) override; + sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw(std::exception) override; private: sal_Int32 getIndentPrefixLength( sal_Int32 nFirstLineBreakOccurrence ) throw(); |