summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry')
-rw-r--r--desktop/source/deployment/registry/component/dp_compbackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/component/dp_component.cxx28
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configuration.cxx12
-rw-r--r--desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/dp_registry.cxx10
-rw-r--r--desktop/source/deployment/registry/executable/dp_executable.cxx10
-rw-r--r--desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/help/dp_help.cxx12
-rw-r--r--desktop/source/deployment/registry/help/dp_helpbackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/inc/dp_backend.h74
-rw-r--r--desktop/source/deployment/registry/package/dp_extbackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx46
-rw-r--r--desktop/source/deployment/registry/script/dp_script.cxx12
-rw-r--r--desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx8
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx16
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx14
16 files changed, 141 insertions, 141 deletions
diff --git a/desktop/source/deployment/registry/component/dp_compbackenddb.hxx b/desktop/source/deployment/registry/component/dp_compbackenddb.hxx
index 37a41a4b705a..ed344430f711 100644
--- a/desktop/source/deployment/registry/component/dp_compbackenddb.hxx
+++ b/desktop/source/deployment/registry/component/dp_compbackenddb.hxx
@@ -65,10 +65,10 @@ namespace component {
class ComponentBackendDb: public dp_registry::backend::BackendDb
{
protected:
- virtual OUString getDbNSName();
- virtual OUString getNSPrefix();
- virtual OUString getRootElementName();
- virtual OUString getKeyElementName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
+ virtual OUString getRootElementName() SAL_OVERRIDE;
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
struct Data
diff --git a/desktop/source/deployment/registry/component/dp_component.cxx b/desktop/source/deployment/registry/component/dp_component.cxx
index b158a65921bc..5de1c6e89754 100644
--- a/desktop/source/deployment/registry/component/dp_component.cxx
+++ b/desktop/source/deployment/registry/component/dp_component.cxx
@@ -127,19 +127,19 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
void componentLiveRemoval(ComponentBackendDb::Data const & data);
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
// Package
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;
const Reference<registry::XSimpleRegistry> getRDB() const;
@@ -161,13 +161,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 );
+ 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:
ComponentsPackageImpl(
::rtl::Reference<PackageRegistryBackend> const & myBackend,
@@ -183,19 +183,19 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
const bool m_jarFile;
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
// Package
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:
TypelibraryPackageImpl(
@@ -230,13 +230,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 );
+ 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;
private:
OUString const m_aPlatform;
@@ -273,9 +273,9 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
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;
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
const Reference<deployment::XPackageTypeInfo> m_xDynComponentTypeInfo;
const Reference<deployment::XPackageTypeInfo> m_xJavaComponentTypeInfo;
@@ -323,11 +323,11 @@ public:
// 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;
using PackageRegistryBackend::disposing;
diff --git a/desktop/source/deployment/registry/configuration/dp_configuration.cxx b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
index 7876ff29e249..70ce05253487 100644
--- a/desktop/source/deployment/registry/configuration/dp_configuration.cxx
+++ b/desktop/source/deployment/registry/configuration/dp_configuration.cxx
@@ -74,13 +74,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 );
+ 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:
inline PackageImpl(
@@ -109,14 +109,14 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
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;
#if HAVE_FEATURE_EXTENSIONS
// for backwards compatibility - nil if no (compatible) back-compat db present
::std::auto_ptr<PersistentMap> m_registeredPackages;
#endif
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
const Reference<deployment::XPackageTypeInfo> m_xConfDataTypeInfo;
const Reference<deployment::XPackageTypeInfo> m_xConfSchemaTypeInfo;
@@ -147,10 +147,10 @@ public:
// 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;
using PackageRegistryBackend::disposing;
};
diff --git a/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx b/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx
index 5605b7a7a9f8..c68e07a3a828 100644
--- a/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx
+++ b/desktop/source/deployment/registry/configuration/dp_configurationbackenddb.hxx
@@ -42,13 +42,13 @@ namespace configuration {
class ConfigurationBackendDb: public dp_registry::backend::BackendDb
{
protected:
- virtual OUString getDbNSName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
- virtual OUString getNSPrefix();
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
- virtual OUString getRootElementName();
+ virtual OUString getRootElementName() SAL_OVERRIDE;
- virtual OUString getKeyElementName();
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
struct Data
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;
};
diff --git a/desktop/source/deployment/registry/executable/dp_executable.cxx b/desktop/source/deployment/registry/executable/dp_executable.cxx
index c5f116ab9540..fd1931185ff4 100644
--- a/desktop/source/deployment/registry/executable/dp_executable.cxx
+++ b/desktop/source/deployment/registry/executable/dp_executable.cxx
@@ -50,13 +50,13 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
virtual beans::Optional< beans::Ambiguous<sal_Bool> > isRegistered_(
::osl::ResettableMutexGuard & guard,
::rtl::Reference<dp_misc::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<dp_misc::AbortChannel> const & abortChannel,
- Reference<XCommandEnvironment> const & xCmdEnv );
+ Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
bool getFileAttributes(sal_uInt64& out_Attributes);
bool isUrlTargetInExtension();
@@ -79,7 +79,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
// PackageRegistryBackend
virtual Reference<deployment::XPackage> bindPackage_(
OUString const & url, OUString const & mediaType, sal_Bool bRemoved,
- OUString const & identifier, Reference<XCommandEnvironment> const & xCmdEnv );
+ OUString const & identifier, Reference<XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
void addDataToDb(OUString const & url);
bool hasActiveEntry(OUString const & url);
@@ -93,10 +93,10 @@ public:
// 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;
using PackageRegistryBackend::disposing;
};
diff --git a/desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx b/desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx
index d2c8061408c3..c45e766d2f37 100644
--- a/desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx
+++ b/desktop/source/deployment/registry/executable/dp_executablebackenddb.hxx
@@ -42,13 +42,13 @@ namespace executable {
class ExecutableBackendDb: public dp_registry::backend::RegisteredDb
{
protected:
- virtual OUString getDbNSName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
- virtual OUString getNSPrefix();
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
- virtual OUString getRootElementName();
+ virtual OUString getRootElementName() SAL_OVERRIDE;
- virtual OUString getKeyElementName();
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
diff --git a/desktop/source/deployment/registry/help/dp_help.cxx b/desktop/source/deployment/registry/help/dp_help.cxx
index f784019e01e4..aff5eba3c898 100644
--- a/desktop/source/deployment/registry/help/dp_help.cxx
+++ b/desktop/source/deployment/registry/help/dp_help.cxx
@@ -64,13 +64,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 );
+ 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:
@@ -84,7 +84,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
//XPackage
virtual css::beans::Optional< OUString > SAL_CALL getRegistrationDataURL()
- throw (deployment::ExtensionRemovedException, css::uno::RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
friend class PackageImpl;
@@ -92,7 +92,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
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 implProcessHelp( PackageImpl * package, bool doRegisterPackage,
Reference<ucb::XCommandEnvironment> const & xCmdEnv);
@@ -118,10 +118,10 @@ public:
// 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;
};
diff --git a/desktop/source/deployment/registry/help/dp_helpbackenddb.hxx b/desktop/source/deployment/registry/help/dp_helpbackenddb.hxx
index 55e2b73d55c2..d826f6a07395 100644
--- a/desktop/source/deployment/registry/help/dp_helpbackenddb.hxx
+++ b/desktop/source/deployment/registry/help/dp_helpbackenddb.hxx
@@ -41,13 +41,13 @@ namespace help {
class HelpBackendDb: public dp_registry::backend::BackendDb
{
protected:
- virtual OUString getDbNSName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
- virtual OUString getNSPrefix();
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
- virtual OUString getRootElementName();
+ virtual OUString getRootElementName() SAL_OVERRIDE;
- virtual OUString getKeyElementName();
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
struct Data
diff --git a/desktop/source/deployment/registry/inc/dp_backend.h b/desktop/source/deployment/registry/inc/dp_backend.h
index 7bcabb27b53e..618fc46cb20f 100644
--- a/desktop/source/deployment/registry/inc/dp_backend.h
+++ b/desktop/source/deployment/registry/inc/dp_backend.h
@@ -71,7 +71,7 @@ protected:
void check() const;
void fireModified();
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
void checkAborted(
::rtl::Reference< ::dp_misc::AbortChannel > const & abortChannel );
@@ -122,40 +122,40 @@ public:
{}
// XPackageTypeInfo
virtual OUString SAL_CALL getMediaType()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getDescription()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getShortDescription()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getFileFilter()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Any SAL_CALL getIcon( sal_Bool highContrast,
sal_Bool smallIcon )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
// XComponent
- virtual void SAL_CALL dispose() throw (css::uno::RuntimeException, std::exception);
+ virtual void SAL_CALL dispose() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL addEventListener(
css::uno::Reference<css::lang::XEventListener> const & xListener )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeEventListener(
css::uno::Reference<css::lang::XEventListener> const & xListener )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XModifyBroadcaster
virtual void SAL_CALL addModifyListener(
css::uno::Reference<css::util::XModifyListener> const & xListener )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL removeModifyListener(
css::uno::Reference<css::util::XModifyListener> const & xListener )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XPackage
virtual css::uno::Reference<css::task::XAbortChannel> SAL_CALL
- createAbortChannel() throw (css::uno::RuntimeException, std::exception);
+ createAbortChannel() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::beans::Optional< css::beans::Ambiguous<sal_Bool> >
SAL_CALL isRegistered(
css::uno::Reference<css::task::XAbortChannel> const & xAbortChannel,
@@ -163,7 +163,7 @@ public:
throw (css::deployment::DeploymentException,
css::ucb::CommandFailedException,
css::ucb::CommandAbortedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::sal_Int32 SAL_CALL checkPrerequisites(
const css::uno::Reference< css::task::XAbortChannel >& xAbortChannel,
@@ -173,14 +173,14 @@ public:
css::deployment::ExtensionRemovedException,
css::ucb::CommandFailedException,
css::ucb::CommandAbortedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::sal_Bool SAL_CALL checkDependencies(
const css::uno::Reference< css::ucb::XCommandEnvironment >& xCmdEnv )
throw (css::deployment::DeploymentException,
css::deployment::ExtensionRemovedException,
css::ucb::CommandFailedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL registerPackage(
sal_Bool startup,
@@ -190,7 +190,7 @@ public:
css::deployment::ExtensionRemovedException,
css::ucb::CommandFailedException,
css::ucb::CommandAbortedException,
- css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception);
+ css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL revokePackage(
sal_Bool startup,
css::uno::Reference<css::task::XAbortChannel> const & xAbortChannel,
@@ -199,9 +199,9 @@ public:
css::ucb::CommandFailedException,
css::ucb::CommandAbortedException,
css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL isBundle()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Sequence< css::uno::Reference<css::deployment::XPackage> >
SAL_CALL getBundle(
css::uno::Reference<css::task::XAbortChannel> const & xAbortChannel,
@@ -210,38 +210,38 @@ public:
css::ucb::CommandFailedException,
css::ucb::CommandAbortedException,
css::lang::IllegalArgumentException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getName()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::beans::Optional< OUString > SAL_CALL getIdentifier()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getVersion()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getURL()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getDisplayName()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getDescription()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getLicenseText()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Sequence< OUString > SAL_CALL
getUpdateInformationURLs()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::beans::StringPair SAL_CALL getPublisherInfo()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Reference< css::graphic::XGraphic > SAL_CALL
getIcon( sal_Bool bHighContrast )
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::uno::Reference<css::deployment::XPackageTypeInfo> SAL_CALL
- getPackageType() throw (css::uno::RuntimeException, std::exception);
+ getPackageType() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL exportTo(
OUString const & destFolderURL,
OUString const & newTitle,
@@ -249,14 +249,14 @@ public:
css::uno::Reference<css::ucb::XCommandEnvironment> const & xCmdEnv )
throw (css::deployment::ExtensionRemovedException,
css::ucb::CommandFailedException,
- css::ucb::CommandAbortedException, css::uno::RuntimeException, std::exception);
+ css::ucb::CommandAbortedException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getRepositoryName()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual css::beans::Optional< OUString > SAL_CALL getRegistrationDataURL()
throw (css::deployment::ExtensionRemovedException,
- css::uno::RuntimeException, std::exception);
+ css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL isRemoved()
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
};
@@ -306,7 +306,7 @@ protected:
= 0;
void check();
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
virtual ~PackageRegistryBackend();
PackageRegistryBackend(
@@ -363,7 +363,7 @@ public:
// XEventListener
virtual void SAL_CALL disposing( css::lang::EventObject const & evt )
- throw (css::uno::RuntimeException, std::exception);
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// XPackageRegistry
virtual css::uno::Reference<css::deployment::XPackage> SAL_CALL bindPackage(
@@ -373,7 +373,7 @@ public:
throw (css::deployment::DeploymentException,
css::deployment::InvalidRemovedParameterException,
css::ucb::CommandFailedException,
- css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception);
+ css::lang::IllegalArgumentException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
// virtual void SAL_CALL packageRemoved(
// OUString const & url, OUString const & mediaType)
diff --git a/desktop/source/deployment/registry/package/dp_extbackenddb.hxx b/desktop/source/deployment/registry/package/dp_extbackenddb.hxx
index 36c55f56350b..1294a9d41563 100644
--- a/desktop/source/deployment/registry/package/dp_extbackenddb.hxx
+++ b/desktop/source/deployment/registry/package/dp_extbackenddb.hxx
@@ -43,10 +43,10 @@ namespace bundle {
class ExtensionBackendDb: public dp_registry::backend::BackendDb
{
protected:
- virtual OUString getDbNSName();
- virtual OUString getNSPrefix();
- virtual OUString getRootElementName();
- virtual OUString getKeyElementName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
+ virtual OUString getRootElementName() SAL_OVERRIDE;
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
struct Data
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx
index 2824f494fed8..90428d0d8359 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -145,15 +145,15 @@ class BackendImpl : public ImplBaseT
virtual beans::Optional< beans::Ambiguous<sal_Bool> > isRegistered_(
::osl::ResettableMutexGuard & guard,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<ucb::XCommandEnvironment> const & xCmdEnv );
+ Reference<ucb::XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
virtual void processPackage_(
::osl::ResettableMutexGuard & guard,
bool registerPackage,
bool startup,
::rtl::Reference<AbortChannel> const & abortChannel,
- Reference<ucb::XCommandEnvironment> const & xCmdEnv );
+ Reference<ucb::XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
@@ -168,7 +168,7 @@ class BackendImpl : public ImplBaseT
OUString const & identifier);
// XPackage
- virtual sal_Bool SAL_CALL isBundle() throw (RuntimeException, std::exception);
+ virtual sal_Bool SAL_CALL isBundle() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence< Reference<deployment::XPackage> > SAL_CALL getBundle(
Reference<task::XAbortChannel> const & xAbortChannel,
@@ -176,12 +176,12 @@ class BackendImpl : public ImplBaseT
throw (deployment::DeploymentException,
ucb::CommandFailedException,
ucb::CommandAbortedException,
- lang::IllegalArgumentException, RuntimeException, std::exception);
+ lang::IllegalArgumentException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getDescription()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getLicenseText()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL exportTo(
OUString const & destFolderURL, OUString const & newTitle,
@@ -190,7 +190,7 @@ class BackendImpl : public ImplBaseT
throw (deployment::ExtensionRemovedException,
ucb::CommandFailedException,
ucb::CommandAbortedException,
- RuntimeException, std::exception);
+ RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::sal_Int32 SAL_CALL checkPrerequisites(
const Reference< task::XAbortChannel >& xAbortChannel,
@@ -200,34 +200,34 @@ class BackendImpl : public ImplBaseT
deployment::DeploymentException,
ucb::CommandFailedException,
ucb::CommandAbortedException,
- RuntimeException, std::exception);
+ RuntimeException, std::exception) SAL_OVERRIDE;
virtual ::sal_Bool SAL_CALL checkDependencies(
const Reference< ucb::XCommandEnvironment >& xCmdEnv )
throw (deployment::DeploymentException,
deployment::ExtensionRemovedException,
ucb::CommandFailedException,
- RuntimeException, std::exception);
+ RuntimeException, std::exception) SAL_OVERRIDE;
virtual beans::Optional<OUString> SAL_CALL getIdentifier()
- throw (RuntimeException, std::exception);
+ throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getVersion()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence<OUString> SAL_CALL getUpdateInformationURLs()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual beans::StringPair SAL_CALL getPublisherInfo()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual OUString SAL_CALL getDisplayName()
- throw (deployment::ExtensionRemovedException, RuntimeException, std::exception);
+ throw (deployment::ExtensionRemovedException, RuntimeException, std::exception) SAL_OVERRIDE;
virtual Reference< graphic::XGraphic > SAL_CALL
getIcon( ::sal_Bool bHighContrast )
throw (deployment::ExtensionRemovedException,
- RuntimeException, std::exception);
+ RuntimeException, std::exception) SAL_OVERRIDE;
};
friend class PackageImpl;
@@ -246,9 +246,9 @@ class BackendImpl : public ImplBaseT
virtual Reference<deployment::XPackage> bindPackage_(
OUString const & url, OUString const & mediaType,
sal_Bool bRemoved, OUString const & identifier,
- Reference<ucb::XCommandEnvironment> const & xCmdEnv );
+ Reference<ucb::XCommandEnvironment> const & xCmdEnv ) SAL_OVERRIDE;
- virtual void SAL_CALL disposing();
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
public:
BackendImpl(
@@ -257,18 +257,18 @@ public:
Reference<deployment::XPackageRegistry> const & xRootRegistry );
// XServiceInfo
- virtual OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception);
+ virtual OUString SAL_CALL getImplementationName() throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService( OUString const& name )
- throw (RuntimeException, std::exception);
+ throw (RuntimeException, std::exception) SAL_OVERRIDE;
virtual Sequence<OUString> SAL_CALL getSupportedServiceNames()
- throw (RuntimeException, std::exception);
+ 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;
using ImplBaseT::disposing;
};
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;
};
diff --git a/desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx b/desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx
index 57e00bd735f5..58df42b4871d 100644
--- a/desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx
+++ b/desktop/source/deployment/registry/script/dp_scriptbackenddb.hxx
@@ -40,13 +40,13 @@ namespace script {
class ScriptBackendDb: public dp_registry::backend::RegisteredDb
{
protected:
- virtual OUString getDbNSName();
+ virtual OUString getDbNSName() SAL_OVERRIDE;
- virtual OUString getNSPrefix();
+ virtual OUString getNSPrefix() SAL_OVERRIDE;
- virtual OUString getRootElementName();
+ virtual OUString getRootElementName() SAL_OVERRIDE;
- virtual OUString getKeyElementName();
+ virtual OUString getKeyElementName() SAL_OVERRIDE;
public:
diff --git a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
index 02d9cb43db69..277aa14830d7 100644
--- a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
+++ b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
@@ -48,32 +48,32 @@ public:
bool isParsed() { return m_bIsParsed; }
// XDocumentHandler
virtual void SAL_CALL startDocument()
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL endDocument()
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL startElement( const OUString& aName,
const css::uno::Reference< css::xml::sax::XAttributeList > & xAttribs )
throw ( css::xml::sax::SAXException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL endElement( const OUString & aName )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL characters( const OUString & aChars )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL ignorableWhitespace( const OUString & aWhitespaces )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL processingInstruction(
const OUString & aTarget, const OUString & aData )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL setDocumentLocator(
const css::uno::Reference< css::xml::sax::XLocator >& xLocator )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception );
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
};
}
}
diff --git a/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx b/desktop/source/deployment/registry/sfwk/dp_sfwk.cxx
index ff89bf124754..788b5e4e408d 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 );
+ 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(
@@ -75,8 +75,8 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
OUString const & url, OUString const & libType, bool bRemoved,
OUString const & identifier);
// XPackage
- virtual OUString SAL_CALL getDescription() throw (RuntimeException, std::exception);
- virtual OUString SAL_CALL getLicenseText() throw (RuntimeException, std::exception);
+ virtual OUString SAL_CALL getDescription() throw (RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL getLicenseText() throw (RuntimeException, std::exception) SAL_OVERRIDE;
};
friend class PackageImpl;
@@ -84,7 +84,7 @@ class BackendImpl : public ::dp_registry::backend::PackageRegistryBackend
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;
const Reference<deployment::XPackageTypeInfo> m_xTypeInfo;
@@ -96,10 +96,10 @@ public:
// 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;
};
BackendImpl * BackendImpl::PackageImpl::getMyBackend() const