summaryrefslogtreecommitdiff
path: root/comphelper/source/container
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/container')
-rw-r--r--comphelper/source/container/IndexedPropertyValuesContainer.cxx2
-rw-r--r--comphelper/source/container/NamedPropertyValuesContainer.cxx2
-rw-r--r--comphelper/source/container/enumerablemap.cxx4
-rw-r--r--comphelper/source/container/namecontainer.cxx2
4 files changed, 5 insertions, 5 deletions
diff --git a/comphelper/source/container/IndexedPropertyValuesContainer.cxx b/comphelper/source/container/IndexedPropertyValuesContainer.cxx
index 824756e7ec36..d0ee59d5c25a 100644
--- a/comphelper/source/container/IndexedPropertyValuesContainer.cxx
+++ b/comphelper/source/container/IndexedPropertyValuesContainer.cxx
@@ -35,7 +35,7 @@ class IndexedPropertyValuesContainer : public cppu::WeakImplHelper< container::X
{
public:
IndexedPropertyValuesContainer() throw();
- virtual ~IndexedPropertyValuesContainer() throw();
+ virtual ~IndexedPropertyValuesContainer() throw() override;
// XIndexContainer
virtual void SAL_CALL insertByIndex( sal_Int32 nIndex, const css::uno::Any& aElement )
diff --git a/comphelper/source/container/NamedPropertyValuesContainer.cxx b/comphelper/source/container/NamedPropertyValuesContainer.cxx
index e4bb48663210..7bd50ebdf9d2 100644
--- a/comphelper/source/container/NamedPropertyValuesContainer.cxx
+++ b/comphelper/source/container/NamedPropertyValuesContainer.cxx
@@ -36,7 +36,7 @@ class NamedPropertyValuesContainer : public cppu::WeakImplHelper< container::XNa
{
public:
NamedPropertyValuesContainer() throw();
- virtual ~NamedPropertyValuesContainer() throw();
+ virtual ~NamedPropertyValuesContainer() throw() override;
// XNameContainer
virtual void SAL_CALL insertByName( const OUString& aName, const css::uno::Any& aElement )
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx
index 3b45fda06255..040192d61dca 100644
--- a/comphelper/source/container/enumerablemap.cxx
+++ b/comphelper/source/container/enumerablemap.cxx
@@ -153,7 +153,7 @@ namespace comphelper
{
protected:
EnumerableMap();
- virtual ~EnumerableMap();
+ virtual ~EnumerableMap() override;
// XInitialization
virtual void SAL_CALL initialize( const Sequence< Any >& aArguments ) throw (Exception, RuntimeException, std::exception) override;
@@ -283,7 +283,7 @@ namespace comphelper
virtual Any SAL_CALL nextElement( ) throw (NoSuchElementException, WrappedTargetException, RuntimeException, std::exception) override;
protected:
- virtual ~MapEnumeration()
+ virtual ~MapEnumeration() override
{
acquire();
{
diff --git a/comphelper/source/container/namecontainer.cxx b/comphelper/source/container/namecontainer.cxx
index 6ef8143753f9..f20be212fd48 100644
--- a/comphelper/source/container/namecontainer.cxx
+++ b/comphelper/source/container/namecontainer.cxx
@@ -42,7 +42,7 @@ namespace comphelper
{
public:
explicit NameContainer( css::uno::Type aType );
- virtual ~NameContainer();
+ virtual ~NameContainer() override;
// XNameContainer
virtual void SAL_CALL insertByName( const OUString& aName, const css::uno::Any& aElement )