summaryrefslogtreecommitdiff
path: root/forms/source/xforms/namedcollection.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/xforms/namedcollection.hxx')
-rw-r--r--forms/source/xforms/namedcollection.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/forms/source/xforms/namedcollection.hxx b/forms/source/xforms/namedcollection.hxx
index 690b71e6afe0..d500ff161c68 100644
--- a/forms/source/xforms/namedcollection.hxx
+++ b/forms/source/xforms/namedcollection.hxx
@@ -92,13 +92,13 @@ public:
// XElementAccess
virtual css::uno::Type SAL_CALL getElementType()
- throw( css::uno::RuntimeException ) SAL_OVERRIDE
+ throw( css::uno::RuntimeException ) override
{
return Collection<T>::getElementType();
}
virtual sal_Bool SAL_CALL hasElements()
- throw( css::uno::RuntimeException ) SAL_OVERRIDE
+ throw( css::uno::RuntimeException ) override
{
return Collection<T>::hasElements();
}
@@ -108,7 +108,7 @@ public:
const OUString& aName )
throw( css::container::NoSuchElementException,
css::lang::WrappedTargetException,
- css::uno::RuntimeException ) SAL_OVERRIDE
+ css::uno::RuntimeException ) override
{
if( hasItem( aName ) )
return css::uno::makeAny( getItem( aName ) );
@@ -118,14 +118,14 @@ public:
}
virtual Names_t SAL_CALL getElementNames()
- throw( css::uno::RuntimeException ) SAL_OVERRIDE
+ throw( css::uno::RuntimeException ) override
{
return getNames();
}
virtual sal_Bool SAL_CALL hasByName(
const OUString& aName )
- throw( css::uno::RuntimeException ) SAL_OVERRIDE
+ throw( css::uno::RuntimeException ) override
{
return hasItem( aName );
}