summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/sfwk/dp_sfwk.cxx')
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
index 6e5d99629c6f..98d044d6ecf8 100644
--- a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
+++ b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
@@ -61,13 +61,13 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
virtual beans::Optional< beans::Ambiguous<sal_Bool> > isRegistered_(
::osl::ResettableMutexGuard & guard,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
+ Reference<XCommandEnvironment> const & xCmdEnv ) override;
virtual void processPackage_(
::osl::ResettableMutexGuard & guard,
bool registerPackage,
bool startup,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
+ Reference<XCommandEnvironment> const & xCmdEnv ) override;
public:
PackageImpl(
@@ -77,10 +77,10 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
// XPackage
virtual OUString SAL_CALL getDescription()
throw (deployment::ExtensionRemovedException,
- RuntimeException, std::exception) SAL_OVERRIDE;
+ RuntimeException, std::exception) override;
virtual OUString SAL_CALL getLicenseText()
throw (deployment::ExtensionRemovedException,
- RuntimeException, std::exception) SAL_OVERRIDE;
+ RuntimeException, std::exception) override;
};
friend class PackageImpl;
@@ -88,7 +88,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
virtual Reference<deployment::XPackage> bindPackage_(
OUString const & url, OUString const & mediaType,
bool bRemoved, OUString const & identifier,
- Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
+ Reference<XCommandEnvironment> const & xCmdEnv ) override;
const Reference<deployment::XPackageTypeInfo> m_xTypeInfo;
@@ -100,10 +100,10 @@ public:
// XPackageRegistry
virtual Sequence< Reference<deployment::XPackageTypeInfo> > SAL_CALL
- getSupportedPackageTypes() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ getSupportedPackageTypes() throw (RuntimeException, std::exception) override;
virtual void SAL_CALL packageRemoved(OUString const & url, OUString const & mediaType)
throw (deployment::DeploymentException,
- uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ uno::RuntimeException, std::exception) override;
};
BackendImpl * BackendImpl::PackageImpl::getMyBackend() const