summaryrefslogtreecommitdiff
path: root/stoc/source/simpleregistry/simpleregistry.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/simpleregistry/simpleregistry.cxx')
-rw-r--r--stoc/source/simpleregistry/simpleregistry.cxx80
1 files changed, 40 insertions, 40 deletions
diff --git a/stoc/source/simpleregistry/simpleregistry.cxx b/stoc/source/simpleregistry/simpleregistry.cxx
index c01d015e4aab..3f5f22124553 100644
--- a/stoc/source/simpleregistry/simpleregistry.cxx
+++ b/stoc/source/simpleregistry/simpleregistry.cxx
@@ -63,45 +63,45 @@ public:
osl::Mutex mutex_;
private:
- virtual OUString SAL_CALL getURL() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual OUString SAL_CALL getURL() throw (css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL open(
OUString const & rURL, sal_Bool bReadOnly, sal_Bool bCreate)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL isValid() throw (css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL close() throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL destroy() throw(
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL
getRootKey() throw(
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL isReadOnly() throw(
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL mergeKey(
OUString const & aKeyName, OUString const & aUrl)
throw (
css::registry::InvalidRegistryException,
- css::registry::MergeConflictException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::MergeConflictException, css::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL getImplementationName()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) override
{ return OUString("com.sun.star.comp.stoc.SimpleRegistry"); }
virtual sal_Bool SAL_CALL supportsService(OUString const & ServiceName)
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ throw (css::uno::RuntimeException, std::exception) override
{ return cppu::supportsService(this, ServiceName); }
virtual css::uno::Sequence< OUString > SAL_CALL
- getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ getSupportedServiceNames() throw (css::uno::RuntimeException, std::exception) override
{
css::uno::Sequence< OUString > names(1);
names[0] = "com.sun.star.registry.SimpleRegistry";
@@ -120,127 +120,127 @@ public:
private:
virtual OUString SAL_CALL getKeyName()
- throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ throw (css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL isReadOnly() throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
- virtual sal_Bool SAL_CALL isValid() throw(css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ virtual sal_Bool SAL_CALL isValid() throw(css::uno::RuntimeException, std::exception) override;
virtual css::registry::RegistryKeyType SAL_CALL getKeyType(
OUString const & rKeyName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::registry::RegistryValueType SAL_CALL getValueType() throw(
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual sal_Int32 SAL_CALL getLongValue() throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setLongValue(sal_Int32 value) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< sal_Int32 > SAL_CALL getLongListValue() throw(
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setLongListValue(
css::uno::Sequence< sal_Int32 > const & seqValue)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL getAsciiValue() throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setAsciiValue(OUString const & value) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< OUString > SAL_CALL getAsciiListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setAsciiListValue(
css::uno::Sequence< OUString > const & seqValue)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL getStringValue() throw(
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setStringValue(OUString const & value) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< OUString > SAL_CALL getStringListValue()
throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setStringListValue(
css::uno::Sequence< OUString > const & seqValue)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getBinaryValue() throw (
css::registry::InvalidRegistryException,
- css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidValueException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL setBinaryValue(
css::uno::Sequence< sal_Int8 > const & value)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL openKey(
OUString const & aKeyName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual css::uno::Reference< css::registry::XRegistryKey > SAL_CALL
createKey(OUString const & aKeyName) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL closeKey() throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL deleteKey(OUString const & rKeyName) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual
css::uno::Sequence< css::uno::Reference< css::registry::XRegistryKey > >
SAL_CALL openKeys() throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual css::uno::Sequence< OUString > SAL_CALL getKeyNames() throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual sal_Bool SAL_CALL createLink(
OUString const & aLinkName, OUString const & aLinkTarget)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual void SAL_CALL deleteLink(OUString const & rLinkName) throw (
- css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::registry::InvalidRegistryException, css::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL getLinkTarget(OUString const & rLinkName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
virtual OUString SAL_CALL getResolvedName(OUString const & aKeyName)
throw (
css::registry::InvalidRegistryException,
- css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
+ css::uno::RuntimeException, std::exception) override;
rtl::Reference< SimpleRegistry > registry_;
RegistryKey key_;