summaryrefslogtreecommitdiff
path: root/io/source/stm/opump.cxx
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2013-12-05 12:53:35 -0200
committerStephan Bergmann <sbergman@redhat.com>2013-12-09 17:30:03 +0100
commit66b602e2315f91faf4c28ea9b72bfe188e0eec9c (patch)
treed9d22939f3e7b5c9942740d5d198a85d3f415690 /io/source/stm/opump.cxx
parent2f50ce6cfab2871cd879c1429e1938d3642616ef (diff)
fdo#54938: Convert io to use cppu::supportsService
Change-Id: Id53289a68352558b039e0993b687d0447cea8036 Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'io/source/stm/opump.cxx')
-rw-r--r--io/source/stm/opump.cxx13
1 files changed, 2 insertions, 11 deletions
diff --git a/io/source/stm/opump.cxx b/io/source/stm/opump.cxx
index 72f1570f23cd..93b4f51e49ed 100644
--- a/io/source/stm/opump.cxx
+++ b/io/source/stm/opump.cxx
@@ -36,6 +36,7 @@
#include <cppuhelper/implbase5.hxx>
#include <cppuhelper/factory.hxx>
#include <cppuhelper/interfacecontainer.hxx>
+#include <cppuhelper/supportsservice.hxx>
#include <osl/mutex.hxx>
#include <osl/thread.h>
@@ -430,15 +431,12 @@ void Pump::setOutputStream( const Reference< XOutputStream >& xOut ) throw()
// data transfer starts in XActiveDataControl::start
}
-// ------------------------------------------------------------
-
Reference< XOutputStream > Pump::getOutputStream() throw()
{
Guard< Mutex > aGuard( m_aMutex );
return m_xOutput;
}
-
// XServiceInfo
OUString Pump::getImplementationName() throw( )
{
@@ -448,14 +446,7 @@ OUString Pump::getImplementationName() throw( )
// XServiceInfo
sal_Bool Pump::supportsService(const OUString& ServiceName) throw( )
{
- Sequence< OUString > aSNL = getSupportedServiceNames();
- const OUString * pArray = aSNL.getConstArray();
-
- for( sal_Int32 i = 0; i < aSNL.getLength(); i++ )
- if( pArray[i] == ServiceName )
- return sal_True;
-
- return sal_False;
+ return cppu::supportsService(this, ServiceName);
}
// XServiceInfo