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 /xmlscript | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xml_helper/xml_byteseq.cxx | 16 | ||||
-rw-r--r-- | xmlscript/source/xml_helper/xml_impctx.cxx | 46 | ||||
-rw-r--r-- | xmlscript/source/xmldlg_imexp/imp_share.hxx | 146 | ||||
-rw-r--r-- | xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx | 2 | ||||
-rw-r--r-- | xmlscript/source/xmlflat_imexp/xmlbas_export.hxx | 18 | ||||
-rw-r--r-- | xmlscript/source/xmlflat_imexp/xmlbas_import.hxx | 72 | ||||
-rw-r--r-- | xmlscript/source/xmllib_imexp/imp_share.hxx | 36 | ||||
-rw-r--r-- | xmlscript/source/xmlmod_imexp/imp_share.hxx | 28 |
8 files changed, 182 insertions, 182 deletions
diff --git a/xmlscript/source/xml_helper/xml_byteseq.cxx b/xmlscript/source/xml_helper/xml_byteseq.cxx index 6cdb37162a92..82ef110245b9 100644 --- a/xmlscript/source/xml_helper/xml_byteseq.cxx +++ b/xmlscript/source/xml_helper/xml_byteseq.cxx @@ -46,17 +46,17 @@ public: // XInputStream virtual sal_Int32 SAL_CALL readBytes( Sequence< sal_Int8 > & rData, sal_Int32 nBytesToRead ) - throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL readSomeBytes( Sequence< sal_Int8 > & rData, sal_Int32 nMaxBytesToRead ) - throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) override; virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip ) - throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, io::IOException, RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL available() - throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) override; virtual void SAL_CALL closeInput() - throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::IOException, RuntimeException, std::exception) override; }; sal_Int32 BSeqInputStream::readBytes( @@ -110,11 +110,11 @@ public: // XOutputStream virtual void SAL_CALL writeBytes( Sequence< sal_Int8 > const & rData ) - throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) override; virtual void SAL_CALL flush() - throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) override; virtual void SAL_CALL closeOutput() - throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) SAL_OVERRIDE; + throw (io::NotConnectedException, io::BufferSizeExceededException, RuntimeException, std::exception) override; }; void BSeqOutputStream::writeBytes( Sequence< sal_Int8 > const & rData ) 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( diff --git a/xmlscript/source/xmldlg_imexp/imp_share.hxx b/xmlscript/source/xmldlg_imexp/imp_share.hxx index 78754058167e..5d4e2f12a13c 100644 --- a/xmlscript/source/xmldlg_imexp/imp_share.hxx +++ b/xmlscript/source/xmldlg_imexp/imp_share.hxx @@ -183,20 +183,20 @@ public: virtual void SAL_CALL startDocument( css::uno::Reference< css::xml::input::XNamespaceMapping > const & xNamespaceMapping ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & rTarget, OUString const & rData ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator( css::uno::Reference< css::xml::sax::XLocator > const & xLocator ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startRootElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; class ElementBase @@ -219,28 +219,28 @@ public: // XElement virtual css::uno::Reference<css::xml::input::XElement> SAL_CALL getParent() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getLocalName() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL getUid() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XAttributes > - SAL_CALL getAttributes() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + SAL_CALL getAttributes() throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace( OUString const & rWhitespaces ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL characters( OUString const & rChars ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & Target, OUString const & Data ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; class StylesElement @@ -251,7 +251,7 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline StylesElement( OUString const & rLocalName, @@ -287,9 +287,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; bool importTextColorStyle( css::uno::Reference< css::beans::XPropertySet > const & xProps ); @@ -340,7 +340,7 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline MenuPopupElement( OUString const & rLocalName, @@ -523,9 +523,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline WindowElement( OUString const & rLocalName, @@ -540,7 +540,7 @@ class EventElement { public: virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline EventElement( sal_Int32 nUid, OUString const & rLocalName, @@ -558,7 +558,7 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; BulletinBoardElement( OUString const & rLocalName, @@ -574,9 +574,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline ButtonElement( OUString const & rLocalName, @@ -594,9 +594,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline CheckBoxElement( OUString const & rLocalName, @@ -615,9 +615,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline ComboBoxElement( OUString const & rLocalName, @@ -636,9 +636,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline MenuListElement( OUString const & rLocalName, @@ -656,7 +656,7 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline RadioElement( OUString const & rLocalName, @@ -675,9 +675,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline RadioGroupElement( OUString const & rLocalName, @@ -697,9 +697,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline TitledBoxElement( OUString const & rLocalName, @@ -717,9 +717,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline TextElement( OUString const & rLocalName, @@ -736,9 +736,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline FixedHyperLinkElement( OUString const & rLocalName, @@ -756,9 +756,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline TextFieldElement( OUString const & rLocalName, @@ -776,9 +776,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline ImageControlElement( OUString const & rLocalName, @@ -796,9 +796,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline FileControlElement( OUString const & rLocalName, @@ -816,9 +816,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline TreeControlElement( OUString const & rLocalName, @@ -836,9 +836,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline CurrencyFieldElement( OUString const & rLocalName, @@ -856,9 +856,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline DateFieldElement( OUString const & rLocalName, @@ -876,9 +876,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline NumericFieldElement( OUString const & rLocalName, @@ -896,9 +896,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline TimeFieldElement( OUString const & rLocalName, @@ -916,9 +916,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline PatternFieldElement( OUString const & rLocalName, @@ -936,9 +936,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline FormattedFieldElement( OUString const & rLocalName, @@ -956,9 +956,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline FixedLineElement( OUString const & rLocalName, @@ -976,9 +976,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline ScrollBarElement( OUString const & rLocalName, @@ -996,9 +996,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline SpinButtonElement( OUString const & rLocalName, @@ -1016,9 +1016,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline MultiPage( OUString const & rLocalName, @@ -1041,9 +1041,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline Frame( OUString const & rLocalName, @@ -1063,9 +1063,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline Page( OUString const & rLocalName, @@ -1087,9 +1087,9 @@ public: SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference<css::xml::input::XAttributes> const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; inline ProgressBarElement( OUString const & rLocalName, diff --git a/xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx b/xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx index b6145581eca4..101ce157d8db 100644 --- a/xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx +++ b/xmlscript/source/xmldlg_imexp/xmldlg_addfunc.cxx @@ -48,7 +48,7 @@ public: // XInputStreamProvider virtual Reference< io::XInputStream > SAL_CALL createInputStream() - throw (RuntimeException, std::exception) SAL_OVERRIDE; + throw (RuntimeException, std::exception) override; }; Reference< io::XInputStream > InputStreamProvider::createInputStream() throw (RuntimeException, std::exception) diff --git a/xmlscript/source/xmlflat_imexp/xmlbas_export.hxx b/xmlscript/source/xmlflat_imexp/xmlbas_export.hxx index 7216b003d6af..7e75ba501da1 100644 --- a/xmlscript/source/xmlflat_imexp/xmlbas_export.hxx +++ b/xmlscript/source/xmlflat_imexp/xmlbas_export.hxx @@ -55,21 +55,21 @@ namespace xmlscript // XServiceInfo virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; // XInitialization virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) - throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException, std::exception) override; // XExporter virtual void SAL_CALL setSourceDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& rxDoc ) - throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) override; // XFilter virtual sal_Bool SAL_CALL filter( const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aDescriptor ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL cancel() - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; }; // class XMLBasicExporter @@ -83,9 +83,9 @@ namespace xmlscript // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; }; // class XMLOasisBasicExporter @@ -99,9 +99,9 @@ namespace xmlscript // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; }; } // namespace xmlscript diff --git a/xmlscript/source/xmlflat_imexp/xmlbas_import.hxx b/xmlscript/source/xmlflat_imexp/xmlbas_import.hxx index c0723ec66ee5..3ec29faf14ca 100644 --- a/xmlscript/source/xmlflat_imexp/xmlbas_import.hxx +++ b/xmlscript/source/xmlflat_imexp/xmlbas_import.hxx @@ -60,27 +60,27 @@ namespace xmlscript // XElement virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL getParent() - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getLocalName() - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL getUid() - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes > SAL_CALL getAttributes() - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL characters( const OUString& rChars ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace( const OUString& rWhitespaces ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( const OUString& rTarget, const OUString& rData ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class BasicLibrariesElement @@ -100,9 +100,9 @@ namespace xmlscript virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class BasicEmbeddedLibraryElement @@ -126,9 +126,9 @@ namespace xmlscript virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class BasicModuleElement @@ -150,9 +150,9 @@ namespace xmlscript virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class BasicSourceCodeElement @@ -173,9 +173,9 @@ namespace xmlscript // XElement virtual void SAL_CALL characters( const OUString& rChars ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class BasicImport @@ -203,19 +203,19 @@ namespace xmlscript // XRoot virtual void SAL_CALL startDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XNamespaceMapping >& xNamespaceMapping ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( const OUString& rTarget, const OUString& rData ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator >& xLocator ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XElement > SAL_CALL startRootElement( sal_Int32 nUid, const OUString& rLocalName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::input::XAttributes >& xAttributes ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class XMLBasicImporterBase @@ -240,30 +240,30 @@ namespace xmlscript // XServiceInfo virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; // XImporter virtual void SAL_CALL setTargetDocument( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent >& rxDoc ) - throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) override; // XDocumentHandler virtual void SAL_CALL startDocument() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL startElement( const OUString& aName, const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XAttributeList >& xAttribs ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement( const OUString& aName ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL characters( const OUString& aChars ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace( const OUString& aWhitespaces ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( const OUString& aTarget, const OUString& aData ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator( const ::com::sun::star::uno::Reference< ::com::sun::star::xml::sax::XLocator >& xLocator ) - throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException, std::exception) override; }; // class XMLBasicImporter @@ -277,9 +277,9 @@ namespace xmlscript // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; }; // class XMLOasisBasicImporter @@ -293,9 +293,9 @@ namespace xmlscript // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) - throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (::com::sun::star::uno::RuntimeException, std::exception) override; }; } // namespace xmlscript diff --git a/xmlscript/source/xmllib_imexp/imp_share.hxx b/xmlscript/source/xmllib_imexp/imp_share.hxx index 19dba7d6db7a..02be5cfeb06a 100644 --- a/xmlscript/source/xmllib_imexp/imp_share.hxx +++ b/xmlscript/source/xmllib_imexp/imp_share.hxx @@ -136,19 +136,19 @@ public: // XRoot virtual void SAL_CALL startDocument( css::uno::Reference< css::xml::input::XNamespaceMapping > const & xNamespaceMapping ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & rTarget, OUString const & rData ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator( css::uno::Reference< css::xml::sax::XLocator > const & xLocator ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startRootElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; class LibElementBase @@ -170,27 +170,27 @@ public: // XElement virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL getParent() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getLocalName() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL getUid() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XAttributes > SAL_CALL getAttributes() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace( OUString const & rWhitespaces ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL characters( OUString const & rChars ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & rTarget, OUString const & rData ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; class LibrariesElement : public LibElementBase @@ -204,9 +204,9 @@ public: virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; LibrariesElement( OUString const & rLocalName, @@ -226,9 +226,9 @@ public: virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; LibraryElement( OUString const & rLocalName, diff --git a/xmlscript/source/xmlmod_imexp/imp_share.hxx b/xmlscript/source/xmlmod_imexp/imp_share.hxx index 2f33d80dcf5c..48495f066cce 100644 --- a/xmlscript/source/xmlmod_imexp/imp_share.hxx +++ b/xmlscript/source/xmlmod_imexp/imp_share.hxx @@ -66,19 +66,19 @@ public: // XRoot virtual void SAL_CALL startDocument( css::uno::Reference< css::xml::input::XNamespaceMapping > const & xNamespaceMapping ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endDocument() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & rTarget, OUString const & rData ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setDocumentLocator( css::uno::Reference< css::xml::sax::XLocator > const & xLocator ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startRootElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; class ModuleElement @@ -101,27 +101,27 @@ public: // XElement virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL getParent() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual OUString SAL_CALL getLocalName() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual sal_Int32 SAL_CALL getUid() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XAttributes > SAL_CALL getAttributes() - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL ignorableWhitespace( OUString const & rWhitespaces ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL characters( OUString const & rChars ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL processingInstruction( OUString const & rTarget, OUString const & rData ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL endElement() - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; virtual css::uno::Reference< css::xml::input::XElement > SAL_CALL startChildElement( sal_Int32 nUid, OUString const & rLocalName, css::uno::Reference< css::xml::input::XAttributes > const & xAttributes ) - throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::xml::sax::SAXException, css::uno::RuntimeException, std::exception) override; }; } |