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.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/forms/source/xforms/namedcollection.hxx b/forms/source/xforms/namedcollection.hxx
index 2b06343c4a40..cba79e2f053e 100644
--- a/forms/source/xforms/namedcollection.hxx
+++ b/forms/source/xforms/namedcollection.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -100,7 +100,7 @@ protected:
public:
// XElementAccess
- virtual typename Collection<T>::Type_t SAL_CALL getElementType()
+ virtual typename Collection<T>::Type_t SAL_CALL getElementType()
throw( typename Collection<T>::RuntimeException_t )
{
return Collection<T>::getElementType();
@@ -116,14 +116,14 @@ public:
virtual typename Collection<T>::Any_t SAL_CALL getByName(
const rtl::OUString& aName )
throw( typename Collection<T>::NoSuchElementException_t,
- typename Collection<T>::WrappedTargetException_t,
+ typename Collection<T>::WrappedTargetException_t,
typename Collection<T>::RuntimeException_t )
{
if( hasItem( aName ) )
return com::sun::star::uno::makeAny( getItem( aName ) );
else
throw typename Collection<T>::NoSuchElementException_t();
-
+
}
virtual Names_t SAL_CALL getElementNames()