From b36963c0a6a09f70ca6d8d607dd3249a3496497d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 12 Oct 2015 16:04:04 +0200 Subject: Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274 --- configmgr/source/setnode.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'configmgr/source/setnode.hxx') diff --git a/configmgr/source/setnode.hxx b/configmgr/source/setnode.hxx index 59109d78acb0..e0ce35f67a7d 100644 --- a/configmgr/source/setnode.hxx +++ b/configmgr/source/setnode.hxx @@ -38,15 +38,15 @@ public: int layer, OUString const & defaultTemplateName, OUString const & templateName); - virtual rtl::Reference< Node > clone(bool keepTemplateName) const SAL_OVERRIDE; + virtual rtl::Reference< Node > clone(bool keepTemplateName) const override; - virtual NodeMap & getMembers() SAL_OVERRIDE; + virtual NodeMap & getMembers() override; - virtual OUString getTemplateName() const SAL_OVERRIDE; + virtual OUString getTemplateName() const override; - virtual void setMandatory(int layer) SAL_OVERRIDE; + virtual void setMandatory(int layer) override; - virtual int getMandatory() const SAL_OVERRIDE; + virtual int getMandatory() const override; OUString const & getDefaultTemplateName() const { return defaultTemplateName_;} @@ -59,7 +59,7 @@ private: virtual ~SetNode(); - virtual Kind kind() const SAL_OVERRIDE; + virtual Kind kind() const override; OUString defaultTemplateName_; std::vector< OUString > additionalTemplateNames_; -- cgit