summaryrefslogtreecommitdiff
path: root/bridges/test/java_uno/acquire/testacquire.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bridges/test/java_uno/acquire/testacquire.cxx')
-rw-r--r--bridges/test/java_uno/acquire/testacquire.cxx10
1 files changed, 2 insertions, 8 deletions
diff --git a/bridges/test/java_uno/acquire/testacquire.cxx b/bridges/test/java_uno/acquire/testacquire.cxx
index e88be55b3e01..7a8de19cb44d 100644
--- a/bridges/test/java_uno/acquire/testacquire.cxx
+++ b/bridges/test/java_uno/acquire/testacquire.cxx
@@ -35,6 +35,7 @@
#include "com/sun/star/uno/XInterface.hpp"
#include "cppuhelper/factory.hxx"
#include "cppuhelper/implbase3.hxx"
+#include <cppuhelper/supportsservice.hxx>
#include "cppuhelper/weak.hxx"
#include "osl/conditn.hxx"
#include "osl/interlck.h"
@@ -319,14 +320,7 @@ private:
sal_Bool Service::supportsService(OUString const & serviceName)
throw (css::uno::RuntimeException)
{
- css::uno::Sequence< OUString > names(
- getSupportedServiceNames_static());
- for (sal_Int32 i = 0; i< names.getLength(); ++i) {
- if (names[i] == serviceName) {
- return true;
- }
- }
- return false;
+ return cppu::supportsService(this, serviceName);
}
namespace {