summaryrefslogtreecommitdiff
path: root/unoxml/source/dom/notationsmap.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml/source/dom/notationsmap.hxx')
-rw-r--r--unoxml/source/dom/notationsmap.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/unoxml/source/dom/notationsmap.hxx b/unoxml/source/dom/notationsmap.hxx
index 6b119a590d60..d07277e1928f 100644
--- a/unoxml/source/dom/notationsmap.hxx
+++ b/unoxml/source/dom/notationsmap.hxx
@@ -45,53 +45,53 @@ namespace DOM
/**
The number of nodes in this map.
*/
- virtual sal_Int32 SAL_CALL getLength() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Int32 SAL_CALL getLength() throw (css::uno::RuntimeException, std::exception) override;
/**
Retrieves a node specified by local name
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL
- getNamedItem(OUString const& name) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ getNamedItem(OUString const& name) throw (css::uno::RuntimeException, std::exception) override;
/**
Retrieves a node specified by local name and namespace URI.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL getNamedItemNS(
OUString const& namespaceURI, OUString const& localName)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
/**
Returns the indexth item in the map.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL
- item(sal_Int32 index) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ item(sal_Int32 index) throw (css::uno::RuntimeException, std::exception) override;
/**
Removes a node specified by name.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL
- removeNamedItem(OUString const& name) throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ removeNamedItem(OUString const& name) throw (css::uno::RuntimeException, std::exception) override;
/**
// Removes a node specified by local name and namespace URI.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL removeNamedItemNS(
OUString const& namespaceURI, OUString const& localName)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
/**
// Adds a node using its nodeName attribute.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL
setNamedItem(css::uno::Reference< css::xml::dom::XNode > const& arg)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
/**
Adds a node using its namespaceURI and localName.
*/
virtual css::uno::Reference< css::xml::dom::XNode > SAL_CALL
setNamedItemNS(css::uno::Reference< css::xml::dom::XNode > const& arg)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
};
}