summaryrefslogtreecommitdiffstats
path: root/testtools/source/performance/ubobject.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'testtools/source/performance/ubobject.cxx')
-rw-r--r--testtools/source/performance/ubobject.cxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/testtools/source/performance/ubobject.cxx b/testtools/source/performance/ubobject.cxx
index 6e904ccf2939..9098eb726a0b 100644
--- a/testtools/source/performance/ubobject.cxx
+++ b/testtools/source/performance/ubobject.cxx
@@ -22,6 +22,7 @@
#include <osl/interlck.h>
#include <cppuhelper/factory.hxx>
+#include <cppuhelper/supportsservice.hxx>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/lang/XComponent.hpp>
@@ -210,14 +211,7 @@ OUString ServiceImpl::getImplementationName()
sal_Bool ServiceImpl::supportsService( const OUString & rServiceName )
throw (RuntimeException)
{
- const Sequence< OUString > & rSNL = getSupportedServiceNames();
- const OUString * pArray = rSNL.getConstArray();
- for ( sal_Int32 nPos = rSNL.getLength(); nPos--; )
- {
- if (pArray[nPos] == rServiceName)
- return sal_True;
- }
- return sal_False;
+ return cppu::supportsService(this, rServiceName);
}
//__________________________________________________________________________________________________
Sequence< OUString > ServiceImpl::getSupportedServiceNames()