summaryrefslogtreecommitdiff
path: root/include/comphelper/enumhelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/comphelper/enumhelper.hxx')
-rw-r--r--include/comphelper/enumhelper.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/comphelper/enumhelper.hxx b/include/comphelper/enumhelper.hxx
index e6d115eac9a5..6e116af61cb5 100644
--- a/include/comphelper/enumhelper.hxx
+++ b/include/comphelper/enumhelper.hxx
@@ -54,7 +54,7 @@ public:
OEnumerationByName(const css::uno::Reference< css::container::XNameAccess >& _rxAccess);
OEnumerationByName(const css::uno::Reference< css::container::XNameAccess >& _rxAccess,
const css::uno::Sequence< OUString >& _aNames );
- virtual ~OEnumerationByName();
+ virtual ~OEnumerationByName() override;
virtual sal_Bool SAL_CALL hasMoreElements( ) throw(css::uno::RuntimeException, std::exception) override;
virtual css::uno::Any SAL_CALL nextElement( )
@@ -80,7 +80,7 @@ class COMPHELPER_DLLPUBLIC OEnumerationByIndex : private OEnumerationLock
public:
OEnumerationByIndex(const css::uno::Reference< css::container::XIndexAccess >& _rxAccess);
- virtual ~OEnumerationByIndex();
+ virtual ~OEnumerationByIndex() override;
virtual sal_Bool SAL_CALL hasMoreElements( ) throw(css::uno::RuntimeException, std::exception) override;
virtual css::uno::Any SAL_CALL nextElement( )
@@ -109,7 +109,7 @@ class COMPHELPER_DLLPUBLIC OAnyEnumeration : private OEnumerationLock
public:
OAnyEnumeration(const css::uno::Sequence< css::uno::Any >& lItems);
- virtual ~OAnyEnumeration();
+ virtual ~OAnyEnumeration() override;
virtual sal_Bool SAL_CALL hasMoreElements( ) throw(css::uno::RuntimeException, std::exception) override;
virtual css::uno::Any SAL_CALL nextElement( )