summaryrefslogtreecommitdiff
path: root/svl/source/uno
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 /svl/source/uno
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'svl/source/uno')
-rw-r--r--svl/source/uno/pathservice.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svl/source/uno/pathservice.cxx b/svl/source/uno/pathservice.cxx
index 3251dd9351c0..f963ed41af5f 100644
--- a/svl/source/uno/pathservice.cxx
+++ b/svl/source/uno/pathservice.cxx
@@ -40,20 +40,20 @@ public:
{}
virtual OUString SAL_CALL getImplementationName()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{
return OUString("com.sun.star.comp.svl.PathService");
}
virtual sal_Bool SAL_CALL supportsService (
const OUString & rName)
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{
return cppu::supportsService(this, rName);
}
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{
css::uno::Sequence< OUString > aRet(1);
aRet.getArray()[0] = "com.sun.star.config.SpecialConfigManager";
@@ -62,23 +62,23 @@ public:
virtual OUString SAL_CALL substituteVariables (
const OUString& sText)
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{
return m_aOptions.SubstituteVariable( sText );
}
virtual void SAL_CALL addPropertyChangeListener (
const OUString &, const css::uno::Reference< css::beans::XPropertyChangeListener > &)
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{}
virtual void SAL_CALL removePropertyChangeListener (
const OUString &, const css::uno::Reference< css::beans::XPropertyChangeListener > &)
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{}
virtual void SAL_CALL flush()
- throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw(css::uno::RuntimeException, std::exception) override
{}
};