[Libreoffice-commits] core.git: chart2/source editeng/source sd/source

Stephan Bergmann sbergman at redhat.com
Wed Oct 23 03:24:22 PDT 2013


 chart2/source/controller/accessibility/AccessibleBase.cxx |    1 -
 editeng/source/uno/unotext.cxx                            |    8 ++++----
 sd/source/ui/slideshow/slideshow.cxx                      |    2 --
 3 files changed, 4 insertions(+), 7 deletions(-)

New commits:
commit c400d41b93421268d1b71f9b029285fc8a855ba0
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Wed Oct 23 12:22:47 2013 +0200

    Some clean-up
    
    Change-Id: I87cc4a6840090076007d268ae19eb2cfd3408e7c

diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx b/chart2/source/controller/accessibility/AccessibleBase.cxx
index 7146620..cc075f7 100644
--- a/chart2/source/controller/accessibility/AccessibleBase.cxx
+++ b/chart2/source/controller/accessibility/AccessibleBase.cxx
@@ -29,7 +29,6 @@
 #include <com/sun/star/accessibility/AccessibleEventObject.hpp>
 #include <com/sun/star/accessibility/AccessibleStateType.hpp>
 #include <com/sun/star/accessibility/AccessibleRole.hpp>
-#include <comphelper/serviceinfohelper.hxx>
 #include <com/sun/star/drawing/LineStyle.hpp>
 #include <com/sun/star/drawing/FillStyle.hpp>
 #include <rtl/ustrbuf.hxx>
diff --git a/editeng/source/uno/unotext.cxx b/editeng/source/uno/unotext.cxx
index fc58fff..f9b09dd 100644
--- a/editeng/source/uno/unotext.cxx
+++ b/editeng/source/uno/unotext.cxx
@@ -1494,10 +1494,10 @@ uno::Sequence< OUString > SAL_CALL SvxUnoTextRangeBase::getSupportedServiceNames
 uno::Sequence< OUString > SAL_CALL SvxUnoTextRangeBase::getSupportedServiceNames_Static()
     SAL_THROW(())
 {
-    uno::Sequence< OUString >   aSeq;
-    comphelper::ServiceInfoHelper::addToSequence( aSeq, 3, "com.sun.star.style.CharacterProperties",
-                                                  "com.sun.star.style.CharacterPropertiesComplex",
-                                                  "com.sun.star.style.CharacterPropertiesAsian");
+    uno::Sequence< OUString > aSeq(3);
+    aSeq[0] = "com.sun.star.style.CharacterProperties";
+    aSeq[1] = "com.sun.star.style.CharacterPropertiesComplex";
+    aSeq[2] = "com.sun.star.style.CharacterPropertiesAsian";
     return aSeq;
 }
 
diff --git a/sd/source/ui/slideshow/slideshow.cxx b/sd/source/ui/slideshow/slideshow.cxx
index 7c305e8..2bab38d 100644
--- a/sd/source/ui/slideshow/slideshow.cxx
+++ b/sd/source/ui/slideshow/slideshow.cxx
@@ -21,14 +21,12 @@
 #include <com/sun/star/beans/PropertyAttribute.hpp>
 #include <com/sun/star/drawing/framework/XControllerManager.hpp>
 #include <com/sun/star/container/XIndexAccess.hpp>
-#include <comphelper/serviceinfohelper.hxx>
 #include <com/sun/star/frame/XDispatchProvider.hpp>
 #include <com/sun/star/util/URL.hpp>
 
 #include <cppuhelper/bootstrap.hxx>
 #include <cppuhelper/supportsservice.hxx>
 
-#include <comphelper/processfactory.hxx>
 #include <osl/mutex.hxx>
 
 #include <vcl/svapp.hxx>


More information about the Libreoffice-commits mailing list