summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/script/dp_script.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/script/dp_script.cxx')
-rw-r--r--desktop/source/deployment/registry/script/dp_script.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/source/deployment/registry/script/dp_script.cxx b/desktop/source/deployment/registry/script/dp_script.cxx
index e83014162ccd..15b92d00a3e4 100644
--- a/desktop/source/deployment/registry/script/dp_script.cxx
+++ b/desktop/source/deployment/registry/script/dp_script.cxx
@@ -62,13 +62,13 @@ class BackendImpl : public t_helper
virtual beans::Optional< beans::Ambiguous<sal_Bool> > isRegistered_(
::osl::ResettableMutexGuard & guard,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<XCommandEnvironment> const & xCmdEnv );
+ Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
virtual void processPackage_(
::osl::ResettableMutexGuard & guard,
bool registerPackage,
bool startup,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<XCommandEnvironment> const & xCmdEnv );
+ Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
public:
PackageImpl(
@@ -84,7 +84,7 @@ class BackendImpl : public t_helper
virtual Reference<deployment::XPackage> bindPackage_(
OUString const & url, OUString const & mediaType,
sal_Bool bRemoved, OUString const & identifier,
- Reference<XCommandEnvironment> const & xCmdEnv );
+ Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
void addDataToDb(OUString const & url);
bool hasActiveEntry(OUString const & url);
@@ -99,14 +99,14 @@ 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 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,
- uno::RuntimeException, std::exception);
+ uno::RuntimeException, std::exception) SAL_OVERRIDE;
};