summaryrefslogtreecommitdiff
path: root/desktop/source/deployment/registry/sfwk
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/deployment/registry/sfwk')
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx16
-rw-r--r--desktop/source/deployment/registry/sfwk/dp_sfwk.cxx14
2 files changed, 15 insertions, 15 deletions
diff --git a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
index 11051e6fb532..0c7459d42d0b 100644
--- a/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
+++ b/desktop/source/deployment/registry/sfwk/dp_parceldesc.hxx
@@ -49,32 +49,32 @@ public:
bool isParsed() { return m_bIsParsed; }
// XDocumentHandler
virtual void SAL_CALL startDocument()
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL endDocument()
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) 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 ) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL endElement( const OUString & aName )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL characters( const OUString & aChars )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL ignorableWhitespace( const OUString & aWhitespaces )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
virtual void SAL_CALL processingInstruction(
const OUString & aTarget, const OUString & aData )
- throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) 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 ) SAL_OVERRIDE;
+ throw ( css::xml::sax::SAXException, css::uno::RuntimeException, std::exception ) override;
};
}
}
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