[Libreoffice-commits] core.git: chart2/source comphelper/source extensions/source include/comphelper reportdesign/source

Marcos Paulo de Souza marcos.souza.org at gmail.com
Wed Oct 23 07:58:37 PDT 2013


 chart2/source/controller/main/ShapeToolbarController.cxx     |    4 ++--
 comphelper/source/misc/sequence.cxx                          |    9 ---------
 extensions/source/propctrlr/stringrepresentation.cxx         |    4 ++--
 include/comphelper/sequence.hxx                              |   10 ----------
 reportdesign/source/core/api/FixedLine.cxx                   |    4 ++--
 reportdesign/source/core/api/FixedText.cxx                   |    4 ++--
 reportdesign/source/core/api/FormatCondition.cxx             |    4 ++--
 reportdesign/source/core/api/FormattedField.cxx              |    4 ++--
 reportdesign/source/core/api/Function.cxx                    |    4 ++--
 reportdesign/source/core/api/Group.cxx                       |    3 ++-
 reportdesign/source/core/api/ImageControl.cxx                |    4 ++--
 reportdesign/source/core/api/ReportEngineJFree.cxx           |    4 ++--
 reportdesign/source/core/api/Section.cxx                     |    3 ++-
 reportdesign/source/core/api/Shape.cxx                       |    4 ++--
 reportdesign/source/filter/xml/dbloader2.cxx                 |    6 +++---
 reportdesign/source/filter/xml/xmlExport.cxx                 |    4 ++--
 reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx  |    7 ++-----
 reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx  |    8 ++------
 reportdesign/source/filter/xml/xmlfilter.cxx                 |    3 ++-
 reportdesign/source/ui/inspection/DataProviderHandler.cxx    |   10 ++--------
 reportdesign/source/ui/inspection/DefaultInspection.cxx      |   11 ++---------
 reportdesign/source/ui/inspection/GeometryHandler.cxx        |    9 ++-------
 reportdesign/source/ui/inspection/ReportComponentHandler.cxx |   10 ++--------
 reportdesign/source/ui/misc/statusbarcontroller.cxx          |    4 ++--
 reportdesign/source/ui/misc/toolboxcontroller.cxx            |    4 ++--
 25 files changed, 47 insertions(+), 94 deletions(-)

New commits:
commit 196f980012739d94654e6863b85b2e49f7e1a1e5
Author: Marcos Paulo de Souza <marcos.souza.org at gmail.com>
Date:   Tue Oct 22 11:47:01 2013 -0200

    fdo#54938: Replace existsValue for cppu::supportsService
    
    As now ::comphelper::existsValue is not used anymore, we're removing this too.
    
    Change-Id: I9bd2544a9c378f5a18746255133f5684867e0114
    Reviewed-on: https://gerrit.libreoffice.org/6378
    Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
    Tested-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/chart2/source/controller/main/ShapeToolbarController.cxx b/chart2/source/controller/main/ShapeToolbarController.cxx
index 85cbccb..f5875d8 100644
--- a/chart2/source/controller/main/ShapeToolbarController.cxx
+++ b/chart2/source/controller/main/ShapeToolbarController.cxx
@@ -20,7 +20,7 @@
 #include "ShapeToolbarController.hxx"
 
 #include <osl/mutex.hxx>
-#include <comphelper/sequence.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <vcl/svapp.hxx>
 #include <vcl/toolbox.hxx>
 #include <toolkit/helper/vclunohelper.hxx>
@@ -54,7 +54,7 @@ Sequence< OUString > ShapeToolbarController::getSupportedServiceNames_Static() t
 
 ::sal_Bool ShapeToolbarController::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException)
 {
-    return ::comphelper::existsValue( ServiceName, getSupportedServiceNames_Static() );
+    return cppu::supportsService( this, ServiceName );
 }
 
 Sequence< OUString > ShapeToolbarController::getSupportedServiceNames() throw (uno::RuntimeException)
diff --git a/comphelper/source/misc/sequence.cxx b/comphelper/source/misc/sequence.cxx
index 9c41239..00b3c3d 100644
--- a/comphelper/source/misc/sequence.cxx
+++ b/comphelper/source/misc/sequence.cxx
@@ -79,15 +79,6 @@ staruno::Sequence<sal_Int16> findValue(const staruno::Sequence< OUString >& _rLi
         return aRetSeq;
     }
 }
-// -----------------------------------------------------------------------------
-sal_Bool existsValue(const OUString& Value,const staruno::Sequence< OUString >& _aList)
-{
-    const OUString * pIter   = _aList.getConstArray();
-    const OUString * pEnd    = pIter + _aList.getLength();
-    return ::std::find(pIter,pEnd,Value) != pEnd;
-}
-
-//.........................................................................
 }   // namespace comphelper
 //.........................................................................
 
diff --git a/extensions/source/propctrlr/stringrepresentation.cxx b/extensions/source/propctrlr/stringrepresentation.cxx
index 770937b..cfba15f 100644
--- a/extensions/source/propctrlr/stringrepresentation.cxx
+++ b/extensions/source/propctrlr/stringrepresentation.cxx
@@ -21,6 +21,7 @@
 #include "cppuhelper/factory.hxx"
 #include "cppuhelper/implementationentry.hxx"
 #include "cppuhelper/implbase3.hxx"
+#include <cppuhelper/supportsservice.hxx>
 #include "com/sun/star/lang/XServiceInfo.hpp"
 #include "com/sun/star/inspection/XStringRepresentation.hpp"
 #include "com/sun/star/lang/XInitialization.hpp"
@@ -31,7 +32,6 @@
 #include <com/sun/star/util/DateTime.hpp>
 #include <com/sun/star/util/Date.hpp>
 #include <com/sun/star/util/Time.hpp>
-#include <comphelper/sequence.hxx>
 #include <comphelper/sequenceasvector.hxx>
 #include <connectivity/dbconversion.hxx>
 #include "formresid.hrc"
@@ -149,7 +149,7 @@ OUString  SAL_CALL StringRepresentation::getImplementationName() throw (uno::Run
 
 ::sal_Bool SAL_CALL StringRepresentation::supportsService(OUString const & serviceName) throw (uno::RuntimeException)
 {
-    return ::comphelper::existsValue(serviceName,comp_StringRepresentation::_getSupportedServiceNames());
+    return cppu::supportsService(this, serviceName);
 }
 
 uno::Sequence< OUString >  SAL_CALL StringRepresentation::getSupportedServiceNames() throw (uno::RuntimeException)
diff --git a/include/comphelper/sequence.hxx b/include/comphelper/sequence.hxx
index 4ac16a3..4695042 100644
--- a/include/comphelper/sequence.hxx
+++ b/include/comphelper/sequence.hxx
@@ -40,16 +40,6 @@ namespace comphelper
     */
     COMPHELPER_DLLPUBLIC staruno::Sequence<sal_Int16> findValue(const staruno::Sequence< OUString >& _rList, const OUString& _rValue, sal_Bool _bOnlyFirst = sal_False);
 
-    /** Checks if the name exists
-     *
-     * \param Value   The value to search for.
-     * \param _aList  The list in which to search for the value.
-     * \return <TRUE/> if the value can be found, otherwise <FALSE/>.
-     */
-    COMPHELPER_DLLPUBLIC sal_Bool existsValue(const OUString& Value,const ::com::sun::star::uno::Sequence< OUString >& _aList);
-
-
-    //-------------------------------------------------------------------------
     namespace internal
     {
         template <class T>
diff --git a/reportdesign/source/core/api/FixedLine.cxx b/reportdesign/source/core/api/FixedLine.cxx
index edfb3b8..5c33e81 100644
--- a/reportdesign/source/core/api/FixedLine.cxx
+++ b/reportdesign/source/core/api/FixedLine.cxx
@@ -21,9 +21,9 @@
 #include "corestrings.hrc"
 #include "core_resource.hrc"
 #include "core_resource.hxx"
-#include <comphelper/sequence.hxx>
 #include <tools/debug.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "Tools.hxx"
 #include "FormatCondition.hxx"
 #include <com/sun/star/beans/XPropertyState.hpp>
@@ -239,7 +239,7 @@ uno::Sequence< OUString > SAL_CALL OFixedLine::getSupportedServiceNames(  ) thro
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OFixedLine::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportComponent
diff --git a/reportdesign/source/core/api/FixedText.cxx b/reportdesign/source/core/api/FixedText.cxx
index 7ea6f56..fc7ea17 100644
--- a/reportdesign/source/core/api/FixedText.cxx
+++ b/reportdesign/source/core/api/FixedText.cxx
@@ -22,11 +22,11 @@
 #include <com/sun/star/beans/XPropertyState.hpp>
 #include "core_resource.hrc"
 #include "core_resource.hxx"
-#include <comphelper/sequence.hxx>
 #include "Tools.hxx"
 #include <tools/color.hxx>
 #include <tools/debug.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "FormatCondition.hxx"
 #include <com/sun/star/text/ParagraphVertAlign.hpp>
 #include "ReportHelperImpl.hxx"
@@ -129,7 +129,7 @@ uno::Sequence< OUString > SAL_CALL OFixedText::getSupportedServiceNames(  ) thro
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OFixedText::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportComponent
diff --git a/reportdesign/source/core/api/FormatCondition.cxx b/reportdesign/source/core/api/FormatCondition.cxx
index b17ea24..b470349 100644
--- a/reportdesign/source/core/api/FormatCondition.cxx
+++ b/reportdesign/source/core/api/FormatCondition.cxx
@@ -22,8 +22,8 @@
 #include <tools/color.hxx>
 #include <tools/debug.hxx>
 #include <connectivity/dbtools.hxx>
-#include <comphelper/sequence.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "Tools.hxx"
 #include <com/sun/star/text/ParagraphVertAlign.hpp>
 #include "ReportHelperImpl.hxx"
@@ -88,7 +88,7 @@ uno::Sequence< OUString > SAL_CALL OFormatCondition::getSupportedServiceNames(
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OFormatCondition::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 uno::Reference< beans::XPropertySetInfo > SAL_CALL OFormatCondition::getPropertySetInfo(  ) throw(uno::RuntimeException)
diff --git a/reportdesign/source/core/api/FormattedField.cxx b/reportdesign/source/core/api/FormattedField.cxx
index 61428aa..670413a 100644
--- a/reportdesign/source/core/api/FormattedField.cxx
+++ b/reportdesign/source/core/api/FormattedField.cxx
@@ -22,11 +22,11 @@
 #include "corestrings.hrc"
 #include "core_resource.hrc"
 #include "core_resource.hxx"
-#include <comphelper/sequence.hxx>
 #include <tools/color.hxx>
 #include <tools/debug.hxx>
 #include <connectivity/dbtools.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "Tools.hxx"
 #include "FormatCondition.hxx"
 #include <com/sun/star/text/ParagraphVertAlign.hpp>
@@ -132,7 +132,7 @@ uno::Sequence< OUString > SAL_CALL OFormattedField::getSupportedServiceNames(  )
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OFormattedField::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportComponent
diff --git a/reportdesign/source/core/api/Function.cxx b/reportdesign/source/core/api/Function.cxx
index 3886897..422e365 100644
--- a/reportdesign/source/core/api/Function.cxx
+++ b/reportdesign/source/core/api/Function.cxx
@@ -21,8 +21,8 @@
 #include "corestrings.hrc"
 #include <tools/debug.hxx>
 #include <connectivity/dbtools.hxx>
-#include <comphelper/sequence.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "Tools.hxx"
 // =============================================================================
 namespace reportdesign
@@ -88,7 +88,7 @@ uno::Sequence< OUString > SAL_CALL OFunction::getSupportedServiceNames(  ) throw
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OFunction::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 uno::Reference< beans::XPropertySetInfo > SAL_CALL OFunction::getPropertySetInfo(  ) throw(uno::RuntimeException)
diff --git a/reportdesign/source/core/api/Group.cxx b/reportdesign/source/core/api/Group.cxx
index ef6e015..2bbd6ca 100644
--- a/reportdesign/source/core/api/Group.cxx
+++ b/reportdesign/source/core/api/Group.cxx
@@ -27,6 +27,7 @@
 #include "Tools.hxx"
 #include <tools/debug.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "Functions.hxx"
 
 // =============================================================================
@@ -97,7 +98,7 @@ uno::Sequence< OUString> SAL_CALL OGroup::getSupportedServiceNames() throw(uno::
 // -----------------------------------------------------------------------------
 sal_Bool SAL_CALL OGroup::supportsService( const OUString& _rServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(_rServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, _rServiceName);
 }
 // -----------------------------------------------------------------------------
 void SAL_CALL OGroup::dispose() throw(uno::RuntimeException)
diff --git a/reportdesign/source/core/api/ImageControl.cxx b/reportdesign/source/core/api/ImageControl.cxx
index b159e6c..0b3f657 100644
--- a/reportdesign/source/core/api/ImageControl.cxx
+++ b/reportdesign/source/core/api/ImageControl.cxx
@@ -22,11 +22,11 @@
 #include "corestrings.hrc"
 #include "core_resource.hrc"
 #include "core_resource.hxx"
-#include <comphelper/sequence.hxx>
 #include "Tools.hxx"
 #include <tools/color.hxx>
 #include <tools/debug.hxx>
 #include <comphelper/property.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "FormatCondition.hxx"
 #include <com/sun/star/awt/ImageScaleMode.hpp>
 #include <com/sun/star/text/ParagraphVertAlign.hpp>
@@ -203,7 +203,7 @@ uno::Sequence< OUString > SAL_CALL OImageControl::getSupportedServiceNames(  ) t
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OImageControl::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportComponent
diff --git a/reportdesign/source/core/api/ReportEngineJFree.cxx b/reportdesign/source/core/api/ReportEngineJFree.cxx
index b2f90da..0c82b18 100644
--- a/reportdesign/source/core/api/ReportEngineJFree.cxx
+++ b/reportdesign/source/core/api/ReportEngineJFree.cxx
@@ -22,10 +22,10 @@
 #include <comphelper/documentconstants.hxx>
 #include <comphelper/storagehelper.hxx>
 #include <connectivity/dbtools.hxx>
-#include <comphelper/sequence.hxx>
 #include <comphelper/mimeconfighelper.hxx>
 #include <comphelper/property.hxx>
 #include <comphelper/string.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <com/sun/star/beans/PropertyAttribute.hpp>
 #include <com/sun/star/beans/NamedValue.hpp>
 #include <com/sun/star/frame/Desktop.hpp>
@@ -119,7 +119,7 @@ uno::Sequence< OUString > SAL_CALL OReportEngineJFree::getSupportedServiceNames(
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL OReportEngineJFree::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportEngine
diff --git a/reportdesign/source/core/api/Section.cxx b/reportdesign/source/core/api/Section.cxx
index 5cf4a65..3787f0a 100644
--- a/reportdesign/source/core/api/Section.cxx
+++ b/reportdesign/source/core/api/Section.cxx
@@ -19,6 +19,7 @@
 #include "Section.hxx"
 #include <comphelper/enumhelper.hxx>
 #include <connectivity/dbtools.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <com/sun/star/report/XReportComponent.hpp>
 #include <com/sun/star/report/ForceNewPage.hpp>
 #include <com/sun/star/beans/PropertyAttribute.hpp>
@@ -194,7 +195,7 @@ uno::Sequence< OUString> SAL_CALL OSection::getSupportedServiceNames() throw(uno
 // -----------------------------------------------------------------------------
 sal_Bool SAL_CALL OSection::supportsService( const OUString& _rServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(_rServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, _rServiceName);
 }
 // -----------------------------------------------------------------------------
 void OSection::init()
diff --git a/reportdesign/source/core/api/Shape.cxx b/reportdesign/source/core/api/Shape.cxx
index 262c623..47270d4 100644
--- a/reportdesign/source/core/api/Shape.cxx
+++ b/reportdesign/source/core/api/Shape.cxx
@@ -23,7 +23,7 @@
 #include <com/sun/star/beans/XPropertyState.hpp>
 #include <com/sun/star/text/ParagraphVertAlign.hpp>
 #include <comphelper/property.hxx>
-#include <comphelper/sequence.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <tools/debug.hxx>
 #include <tools/diagnose_ex.h>
 #include <svx/unoshape.hxx>
@@ -151,7 +151,7 @@ uno::Sequence< OUString > SAL_CALL OShape::getSupportedServiceNames(  ) throw(un
 sal_Bool SAL_CALL OShape::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
 
-    return m_sServiceName == ServiceName || ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 // XReportComponent
diff --git a/reportdesign/source/filter/xml/dbloader2.cxx b/reportdesign/source/filter/xml/dbloader2.cxx
index 477fa61..c650309 100644
--- a/reportdesign/source/filter/xml/dbloader2.cxx
+++ b/reportdesign/source/filter/xml/dbloader2.cxx
@@ -18,8 +18,8 @@
  */
 #include "dbloader2.hxx"
 #include <tools/urlobj.hxx>
-#include <comphelper/sequence.hxx>
-// -------------------------------------------------------------------------
+#include <cppuhelper/supportsservice.hxx>
+
 namespace rptxml
 {
 
@@ -94,7 +94,7 @@ OUString SAL_CALL ORptTypeDetection::getImplementationName() throw(  )
 // XServiceInfo
 sal_Bool SAL_CALL ORptTypeDetection::supportsService(const OUString& ServiceName) throw(  )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -------------------------------------------------------------------------
 // XServiceInfo
diff --git a/reportdesign/source/filter/xml/xmlExport.cxx b/reportdesign/source/filter/xml/xmlExport.cxx
index 5677432..c76a4e3 100644
--- a/reportdesign/source/filter/xml/xmlExport.cxx
+++ b/reportdesign/source/filter/xml/xmlExport.cxx
@@ -20,13 +20,13 @@
 #include "xmlExport.hxx"
 #include "xmlAutoStyle.hxx"
 #include <xmloff/ProgressBarHelper.hxx>
-#include <comphelper/sequence.hxx>
 #include <xmloff/xmltoken.hxx>
 #include <xmloff/txtimp.hxx>
 #include <xmloff/xmlnmspe.hxx>
 #include <xmloff/xmluconv.hxx>
 #include <xmloff/nmspmap.hxx>
 #include <comphelper/types.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "xmlEnums.hxx"
 #include <xmloff/txtprmap.hxx>
 #include <xmloff/numehelp.hxx>
@@ -336,7 +336,7 @@ uno::Sequence< OUString > SAL_CALL ORptExport::getSupportedServiceNames(  ) thro
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL ORptExport::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 void ORptExport::exportFunctions(const Reference<XIndexAccess>& _xFunctions)
diff --git a/reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx b/reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx
index f98ab74..7f796e3 100644
--- a/reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx
+++ b/reportdesign/source/filter/xml/xmlExportDocumentHandler.cxx
@@ -22,9 +22,9 @@
 #include <com/sun/star/chart2/data/XDatabaseDataProvider.hpp>
 #include <com/sun/star/chart/XComplexDescriptionAccess.hpp>
 #include <com/sun/star/reflection/ProxyFactory.hpp>
-#include <comphelper/sequence.hxx>
 #include <comphelper/sequenceashashmap.hxx>
 #include <comphelper/documentconstants.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <xmloff/attrlist.hxx>
 #include <xmloff/xmltoken.hxx>
 #include <xmloff/xmlement.hxx>
@@ -99,13 +99,11 @@ OUString SAL_CALL ExportDocumentHandler::getImplementationName(  ) throw(uno::Ru
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------
 sal_Bool SAL_CALL ExportDocumentHandler::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+    return cppu::supportsService(this, ServiceName);
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > SAL_CALL ExportDocumentHandler::getSupportedServiceNames(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported;
@@ -114,7 +112,6 @@ uno::Sequence< OUString > SAL_CALL ExportDocumentHandler::getSupportedServiceNam
     return ::comphelper::concatSequences(getSupportedServiceNames_static(),aSupported);
 }
 
-//------------------------------------------------------------------------
 OUString ExportDocumentHandler::getImplementationName_Static(  ) throw(uno::RuntimeException)
 {
     return OUString("com.sun.star.comp.report.ExportDocumentHandler");
diff --git a/reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx b/reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx
index 65cbca5..fca9c32 100644
--- a/reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx
+++ b/reportdesign/source/filter/xml/xmlImportDocumentHandler.cxx
@@ -25,10 +25,10 @@
 #include <com/sun/star/chart/XComplexDescriptionAccess.hpp>
 #include <com/sun/star/chart/ChartDataRowSource.hpp>
 #include <com/sun/star/reflection/ProxyFactory.hpp>
-#include <comphelper/sequence.hxx>
 #include <comphelper/sequenceashashmap.hxx>
 #include <comphelper/documentconstants.hxx>
 #include <comphelper/namedvaluecollection.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <xmloff/attrlist.hxx>
 #include <xmloff/xmltoken.hxx>
 #include <xmloff/xmlement.hxx>
@@ -70,13 +70,11 @@ OUString SAL_CALL ImportDocumentHandler::getImplementationName(  ) throw(uno::Ru
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------
 sal_Bool SAL_CALL ImportDocumentHandler::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+    return cppu::supportsService(this, ServiceName);
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > SAL_CALL ImportDocumentHandler::getSupportedServiceNames(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported;
@@ -85,13 +83,11 @@ uno::Sequence< OUString > SAL_CALL ImportDocumentHandler::getSupportedServiceNam
     return ::comphelper::concatSequences(getSupportedServiceNames_static(),aSupported);
 }
 
-//------------------------------------------------------------------------
 OUString ImportDocumentHandler::getImplementationName_Static(  ) throw(uno::RuntimeException)
 {
     return OUString("com.sun.star.comp.report.ImportDocumentHandler");
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > ImportDocumentHandler::getSupportedServiceNames_static(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported(1);
diff --git a/reportdesign/source/filter/xml/xmlfilter.cxx b/reportdesign/source/filter/xml/xmlfilter.cxx
index 819ee64..a7109c2 100644
--- a/reportdesign/source/filter/xml/xmlfilter.cxx
+++ b/reportdesign/source/filter/xml/xmlfilter.cxx
@@ -41,6 +41,7 @@
 #include <comphelper/processfactory.hxx>
 #include <comphelper/genericpropertyset.hxx>
 #include <comphelper/mediadescriptor.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <xmloff/ProgressBarHelper.hxx>
 #include <sfx2/docfile.hxx>
 #include <com/sun/star/io/XInputStream.hpp>
@@ -428,7 +429,7 @@ uno::Sequence< OUString > SAL_CALL ORptFilter::getSupportedServiceNames(  ) thro
 //------------------------------------------------------------------------------
 sal_Bool SAL_CALL ORptFilter::supportsService(const OUString& ServiceName) throw( uno::RuntimeException )
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 // -----------------------------------------------------------------------------
 sal_Bool SAL_CALL ORptFilter::filter( const Sequence< PropertyValue >& rDescriptor )
diff --git a/reportdesign/source/ui/inspection/DataProviderHandler.cxx b/reportdesign/source/ui/inspection/DataProviderHandler.cxx
index 31cdab6..a9245cf 100644
--- a/reportdesign/source/ui/inspection/DataProviderHandler.cxx
+++ b/reportdesign/source/ui/inspection/DataProviderHandler.cxx
@@ -19,9 +19,9 @@
 #include "DataProviderHandler.hxx"
 #include <com/sun/star/lang/XInitialization.hpp>
 #include <comphelper/namedvaluecollection.hxx>
-#include <comphelper/sequence.hxx>
 #include <comphelper/property.hxx>
 #include <comphelper/types.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include "uistrings.hrc"
 #include <toolkit/helper/vclunohelper.hxx>
 #include <unotools/syslocale.hxx>
@@ -72,31 +72,26 @@ DataProviderHandler::DataProviderHandler(uno::Reference< uno::XComponentContext
     }
 }
 
-//------------------------------------------------------------------------
 OUString SAL_CALL DataProviderHandler::getImplementationName(  ) throw(uno::RuntimeException)
 {
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------
 sal_Bool SAL_CALL DataProviderHandler::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+    return cppu::supportsService(this, ServiceName);
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > SAL_CALL DataProviderHandler::getSupportedServiceNames(  ) throw(uno::RuntimeException)
 {
     return getSupportedServiceNames_static();
 }
 
-//------------------------------------------------------------------------
 OUString DataProviderHandler::getImplementationName_Static(  ) throw(uno::RuntimeException)
 {
     return OUString("com.sun.star.comp.report.DataProviderHandler");
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > DataProviderHandler::getSupportedServiceNames_static(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported(1);
@@ -104,7 +99,6 @@ uno::Sequence< OUString > DataProviderHandler::getSupportedServiceNames_static(
     return aSupported;
 }
 
-//------------------------------------------------------------------------
 uno::Reference< uno::XInterface > SAL_CALL DataProviderHandler::create( const uno::Reference< uno::XComponentContext >& _rxContext )
 {
     return *(new DataProviderHandler( _rxContext ));
diff --git a/reportdesign/source/ui/inspection/DefaultInspection.cxx b/reportdesign/source/ui/inspection/DefaultInspection.cxx
index 860bf6e..50fe32a 100644
--- a/reportdesign/source/ui/inspection/DefaultInspection.cxx
+++ b/reportdesign/source/ui/inspection/DefaultInspection.cxx
@@ -17,13 +17,13 @@
  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
  */
 #include "DefaultInspection.hxx"
-#include <comphelper/sequence.hxx>
 #include <com/sun/star/ucb/AlreadyInitializedException.hpp>
 #include <com/sun/star/lang/IllegalArgumentException.hpp>
 #include <RptResId.hrc>
 #include "ModuleHelper.hxx"
 #include "helpids.hrc"
 #include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <osl/diagnose.h>
 #include <rtl/ustrbuf.hxx>
 #include <tools/debug.hxx>
@@ -64,37 +64,31 @@ namespace rptui
         DBG_CTOR(DefaultComponentInspectorModel,NULL);
     }
 
-    //------------------------------------------------------------------------
     DefaultComponentInspectorModel::~DefaultComponentInspectorModel()
     {
         DBG_DTOR(DefaultComponentInspectorModel,NULL);
     }
 
-    //------------------------------------------------------------------------
     OUString SAL_CALL DefaultComponentInspectorModel::getImplementationName(  ) throw(RuntimeException)
     {
         return getImplementationName_Static();
     }
 
-    //------------------------------------------------------------------------
     sal_Bool SAL_CALL DefaultComponentInspectorModel::supportsService( const OUString& ServiceName ) throw(RuntimeException)
     {
-        return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+        return cppu::supportsService(this, ServiceName);
     }
 
-    //------------------------------------------------------------------------
     Sequence< OUString > SAL_CALL DefaultComponentInspectorModel::getSupportedServiceNames(  ) throw(RuntimeException)
     {
         return getSupportedServiceNames_static();
     }
 
-    //------------------------------------------------------------------------
     OUString DefaultComponentInspectorModel::getImplementationName_Static(  ) throw(RuntimeException)
     {
         return OUString("com.sun.star.comp.report.DefaultComponentInspectorModel");
     }
 
-    //------------------------------------------------------------------------
     Sequence< OUString > DefaultComponentInspectorModel::getSupportedServiceNames_static(  ) throw(RuntimeException)
     {
         Sequence< OUString > aSupported(1);
@@ -102,7 +96,6 @@ namespace rptui
         return aSupported;
     }
 
-    //------------------------------------------------------------------------
     Reference< XInterface > SAL_CALL DefaultComponentInspectorModel::create( const Reference< XComponentContext >& _rxContext )
     {
         return *(new DefaultComponentInspectorModel( _rxContext ));
diff --git a/reportdesign/source/ui/inspection/GeometryHandler.cxx b/reportdesign/source/ui/inspection/GeometryHandler.cxx
index c53a077..10f3141 100644
--- a/reportdesign/source/ui/inspection/GeometryHandler.cxx
+++ b/reportdesign/source/ui/inspection/GeometryHandler.cxx
@@ -18,10 +18,10 @@
  */
 #include "GeometryHandler.hxx"
 
-#include <comphelper/sequence.hxx>
 #include <comphelper/types.hxx>
 #include <comphelper/property.hxx>
 #include <comphelper/mimeconfighelper.hxx>
+#include <cppuhelper/supportsservice.hxx>
 
 #include "uistrings.hrc"
 #include "reportformula.hxx"
@@ -257,25 +257,21 @@ OUString SAL_CALL GeometryHandler::getImplementationName(  ) throw(uno::RuntimeE
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------
 sal_Bool SAL_CALL GeometryHandler::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+    return cppu::supportsService(this, ServiceName);
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > SAL_CALL GeometryHandler::getSupportedServiceNames(  ) throw(uno::RuntimeException)
 {
     return getSupportedServiceNames_static();
 }
 
-//------------------------------------------------------------------------
 OUString GeometryHandler::getImplementationName_Static(  ) throw(uno::RuntimeException)
 {
     return OUString("com.sun.star.comp.report.GeometryHandler");
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > GeometryHandler::getSupportedServiceNames_static(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported(1);
@@ -283,7 +279,6 @@ uno::Sequence< OUString > GeometryHandler::getSupportedServiceNames_static(  ) t
     return aSupported;
 }
 
-//------------------------------------------------------------------------
 uno::Reference< uno::XInterface > SAL_CALL GeometryHandler::create( const uno::Reference< uno::XComponentContext >& _rxContext )
 {
     return *(new GeometryHandler( _rxContext ));
diff --git a/reportdesign/source/ui/inspection/ReportComponentHandler.cxx b/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
index 2aa83e7..295e787 100644
--- a/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
+++ b/reportdesign/source/ui/inspection/ReportComponentHandler.cxx
@@ -18,9 +18,9 @@
  */
 #include "ReportComponentHandler.hxx"
 #include <com/sun/star/lang/XInitialization.hpp>
-#include <comphelper/sequence.hxx>
 #include "uistrings.hrc"
 #include <comphelper/types.hxx>
+#include <cppuhelper/supportsservice.hxx>
 #include <toolkit/helper/vclunohelper.hxx>
 #include <unotools/syslocale.hxx>
 #include <com/sun/star/form/inspection/FormComponentPropertyHandler.hpp>
@@ -53,31 +53,26 @@ ReportComponentHandler::ReportComponentHandler(uno::Reference< uno::XComponentCo
     }
 }
 
-//------------------------------------------------------------------------
 OUString SAL_CALL ReportComponentHandler::getImplementationName(  ) throw(uno::RuntimeException)
 {
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------
 sal_Bool SAL_CALL ReportComponentHandler::supportsService( const OUString& ServiceName ) throw(uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_static());
+    return cppu::supportsService(this, ServiceName);
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > SAL_CALL ReportComponentHandler::getSupportedServiceNames(  ) throw(uno::RuntimeException)
 {
     return getSupportedServiceNames_static();
 }
 
-//------------------------------------------------------------------------
 OUString ReportComponentHandler::getImplementationName_Static(  ) throw(uno::RuntimeException)
 {
     return OUString("com.sun.star.comp.report.ReportComponentHandler");
 }
 
-//------------------------------------------------------------------------
 uno::Sequence< OUString > ReportComponentHandler::getSupportedServiceNames_static(  ) throw(uno::RuntimeException)
 {
     uno::Sequence< OUString > aSupported(1);
@@ -85,7 +80,6 @@ uno::Sequence< OUString > ReportComponentHandler::getSupportedServiceNames_stati
     return aSupported;
 }
 
-//------------------------------------------------------------------------
 uno::Reference< uno::XInterface > SAL_CALL ReportComponentHandler::create( const uno::Reference< uno::XComponentContext >& _rxContext )
 {
     return *(new ReportComponentHandler( _rxContext ));
diff --git a/reportdesign/source/ui/misc/statusbarcontroller.cxx b/reportdesign/source/ui/misc/statusbarcontroller.cxx
index e86169a..85e186c 100644
--- a/reportdesign/source/ui/misc/statusbarcontroller.cxx
+++ b/reportdesign/source/ui/misc/statusbarcontroller.cxx
@@ -19,6 +19,7 @@
 
 #include "statusbarcontroller.hxx"
 
+#include <cppuhelper/supportsservice.hxx>
 #include <svx/zoomsliderctrl.hxx>
 #include <svx/zoomctrl.hxx>
 #include <svx/svxids.hrc>
@@ -44,7 +45,6 @@ OUString SAL_CALL OStatusbarController::getImplementationName() throw( RuntimeEx
     return getImplementationName_Static();
 }
 
-//------------------------------------------------------------------------------
 OUString OStatusbarController::getImplementationName_Static() throw( RuntimeException )
 {
     return OUString("com.sun.star.report.comp.StatusbarController");
@@ -59,7 +59,7 @@ Sequence< OUString> OStatusbarController::getSupportedServiceNames_Static(void)
 // -----------------------------------------------------------------------------
 ::sal_Bool SAL_CALL OStatusbarController::supportsService( const OUString& ServiceName ) throw (RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 //-------------------------------------------------------------------------
 Sequence< OUString> SAL_CALL OStatusbarController::getSupportedServiceNames() throw(RuntimeException)
diff --git a/reportdesign/source/ui/misc/toolboxcontroller.cxx b/reportdesign/source/ui/misc/toolboxcontroller.cxx
index bfc6c65..627be80 100644
--- a/reportdesign/source/ui/misc/toolboxcontroller.cxx
+++ b/reportdesign/source/ui/misc/toolboxcontroller.cxx
@@ -41,7 +41,7 @@
 #include <editeng/colritem.hxx>
 #include <svx/tbxcustomshapes.hxx>
 
-#include <comphelper/sequence.hxx>
+#include <cppuhelper/supportsservice.hxx>
 
 #include <memory>
 
@@ -76,7 +76,7 @@ Sequence< OUString> OToolboxController::getSupportedServiceNames_Static(void) th
 // -----------------------------------------------------------------------------
 ::sal_Bool SAL_CALL OToolboxController::supportsService( const OUString& ServiceName ) throw (uno::RuntimeException)
 {
-    return ::comphelper::existsValue(ServiceName,getSupportedServiceNames_Static());
+    return cppu::supportsService(this, ServiceName);
 }
 //-------------------------------------------------------------------------
 Sequence< OUString> SAL_CALL OToolboxController::getSupportedServiceNames() throw(RuntimeException)


More information about the Libreoffice-commits mailing list