summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/dp_registry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/dp_registry.cxx')
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/desktop/source/deployment/registry/dp_registry.cxx b/desktop/source/deployment/registry/dp_registry.cxx
index 7dbfb302c67e..998d6b525205 100644
--- a/desktop/source/deployment/registry/dp_registry.cxx
+++ b/desktop/source/deployment/registry/dp_registry.cxx
@@ -98,7 +98,7 @@ class PackageRegistryImpl : private MutexHolder, public t_helper
protected:
inline void check();
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
virtual ~PackageRegistryImpl();
PackageRegistryImpl() : t_helper( getMutex() ) {}
@@ -111,7 +111,7 @@ public:
Reference<XComponentContext> const & xComponentContext );
// XUpdatable
- virtual void SAL_CALL update() throw (RuntimeException, std::exception);
+ virtual void SAL_CALL update() throw (RuntimeException, std::exception) SAL_OVERRIDE;
// XPackageRegistry
virtual Reference<deployment::XPackage> SAL_CALL bindPackage(
@@ -120,12 +120,12 @@ public:
throw (deployment::DeploymentException,
deployment::InvalidRemovedParameterException,
CommandFailedException,
- lang::IllegalArgumentException, RuntimeException, std::exception);
+ lang::IllegalArgumentException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< Reference<deployment::XPackageTypeInfo> > SAL_CALL
- getSupportedPackageTypes() throw (RuntimeException, std::exception);
+ getSupportedPackageTypes() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL packageRemoved(OUString const & url, OUString const & mediaType)
throw (deployment::DeploymentException,
- RuntimeException, std::exception);
+ RuntimeException, std::exception) SAL_OVERRIDE;
};