summaryrefslogtreecommitdiff
path: root/xmlscript/source/xml_helper/xml_impctx.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /xmlscript/source/xml_helper/xml_impctx.cxx
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'xmlscript/source/xml_helper/xml_impctx.cxx')
-rw-r--r--xmlscript/source/xml_helper/xml_impctx.cxx46
1 files changed, 23 insertions, 23 deletions
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx
index dfb58084243c..35299be38efd 100644
--- a/xmlscript/source/xml_helper/xml_impctx.cxx
+++ b/xmlscript/source/xml_helper/xml_impctx.cxx
@@ -138,48 +138,48 @@ public:
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL supportsService(
OUString const & servicename )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
// XInitialization
virtual void SAL_CALL initialize(
Sequence< Any > const & arguments )
- throw (Exception, std::exception) SAL_OVERRIDE;
+ throw (Exception, std::exception) override;
// XDocumentHandler
virtual void SAL_CALL startDocument()
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL endDocument()
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL startElement(
OUString const & rQElementName,
Reference< xml::sax::XAttributeList > const & xAttribs )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL endElement(
OUString const & rQElementName )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL characters(
OUString const & rChars )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL ignorableWhitespace(
OUString const & rWhitespaces )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL processingInstruction(
OUString const & rTarget, OUString const & rData )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
virtual void SAL_CALL setDocumentLocator(
Reference< xml::sax::XLocator > const & xLocator )
- throw (xml::sax::SAXException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (xml::sax::SAXException, RuntimeException, std::exception) override;
// XNamespaceMapping
virtual sal_Int32 SAL_CALL getUidByUri( OUString const & Uri )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getUriByUid( sal_Int32 Uid )
- throw (container::NoSuchElementException, RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (container::NoSuchElementException, RuntimeException, std::exception) override;
};
DocumentHandlerImpl::DocumentHandlerImpl(
@@ -346,31 +346,31 @@ public:
// XAttributes
virtual sal_Int32 SAL_CALL getLength()
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getIndexByQName(
OUString const & rQName )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getIndexByUidName(
sal_Int32 nUid, OUString const & rLocalName )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getQNameByIndex(
sal_Int32 nIndex )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getUidByIndex(
sal_Int32 nIndex )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getLocalNameByIndex(
sal_Int32 nIndex )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getValueByIndex(
sal_Int32 nIndex )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getValueByUidName(
sal_Int32 nUid, OUString const & rLocalName )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
virtual OUString SAL_CALL getTypeByIndex(
sal_Int32 nIndex )
- throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (RuntimeException, std::exception) override;
};
inline ExtendedAttributes::ExtendedAttributes(