diff options
Diffstat (limited to 'extensions/source/bibliography/bibload.cxx')
-rw-r--r-- | extensions/source/bibliography/bibload.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/extensions/source/bibliography/bibload.cxx b/extensions/source/bibliography/bibload.cxx index adb0046e962f..560b085d43e8 100644 --- a/extensions/source/bibliography/bibload.cxx +++ b/extensions/source/bibliography/bibload.cxx @@ -20,6 +20,7 @@ #include <osl/mutex.hxx> #include <tools/diagnose_ex.h> #include <cppuhelper/weak.hxx> +#include <cppuhelper/supportsservice.hxx> #include <svl/itemprop.hxx> #include <uno/environment.h> #include <svl/urihelper.hxx> @@ -169,12 +170,7 @@ OUString BibliographyLoader::getImplementationName() throw( ) // XServiceInfo sal_Bool BibliographyLoader::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 |