summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-15 14:58:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-15 14:58:57 +0200
commit8270808946bf8d4452a73a6b8226c85142043956 (patch)
tree636ad9c9cac6da4a420d8bb96da0a0a9295b5b65 /forms
parent7480948d8791858e08bd3c19d6b6b3ee3508a890 (diff)
Mark template member fns that are supposed to override as SAL_OVERRIDE
Change-Id: If940dcf7f7d2144576b4ae55578b8b7bd113295b
Diffstat (limited to 'forms')
-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 c32c888e9dae..d85add0f5897 100644
--- a/forms/source/xforms/namedcollection.hxx
+++ b/forms/source/xforms/namedcollection.hxx
@@ -92,13 +92,13 @@ public:
// XElementAccess
virtual typename Collection<T>::Type_t SAL_CALL getElementType()
- throw( typename Collection<T>::RuntimeException_t )
+ throw( typename Collection<T>::RuntimeException_t ) SAL_OVERRIDE
{
return Collection<T>::getElementType();
}
virtual sal_Bool SAL_CALL hasElements()
- throw( typename Collection<T>::RuntimeException_t )
+ throw( typename Collection<T>::RuntimeException_t ) SAL_OVERRIDE
{
return Collection<T>::hasElements();
}
@@ -108,7 +108,7 @@ public:
const OUString& aName )
throw( typename Collection<T>::NoSuchElementException_t,
typename Collection<T>::WrappedTargetException_t,
- typename Collection<T>::RuntimeException_t )
+ typename Collection<T>::RuntimeException_t ) SAL_OVERRIDE
{
if( hasItem( aName ) )
return com::sun::star::uno::makeAny( getItem( aName ) );
@@ -118,14 +118,14 @@ public:
}
virtual Names_t SAL_CALL getElementNames()
- throw( typename Collection<T>::RuntimeException_t )
+ throw( typename Collection<T>::RuntimeException_t ) SAL_OVERRIDE
{
return getNames();
}
virtual sal_Bool SAL_CALL hasByName(
const OUString& aName )
- throw( typename Collection<T>::RuntimeException_t )
+ throw( typename Collection<T>::RuntimeException_t ) SAL_OVERRIDE
{
return hasItem( aName ) ? sal_True : sal_False;
}