summaryrefslogtreecommitdiff
path: root/include/comphelper/servicedecl.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/servicedecl.hxx')
-rw-r--r--include/comphelper/servicedecl.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/servicedecl.hxx b/include/comphelper/servicedecl.hxx
index b315e8e04ec5..67adcf1f971b 100644
--- a/include/comphelper/servicedecl.hxx
+++ b/include/comphelper/servicedecl.hxx
@@ -165,15 +165,15 @@ public:
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException) SAL_OVERRIDE {
+ throw (css::uno::RuntimeException) override {
return m_rServiceDecl.getImplementationName();
}
virtual sal_Bool SAL_CALL supportsService( OUString const& name )
- throw (css::uno::RuntimeException) SAL_OVERRIDE {
+ throw (css::uno::RuntimeException) override {
return m_rServiceDecl.supportsService(name);
}
virtual css::uno::Sequence< OUString>
- SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException) SAL_OVERRIDE {
+ SAL_CALL getSupportedServiceNames() throw (css::uno::RuntimeException) override {
return m_rServiceDecl.getSupportedServiceNames();
}