summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-23 12:22:47 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-23 12:23:00 +0200
commitc400d41b93421268d1b71f9b029285fc8a855ba0 (patch)
treeb57843c9cd291c16f1dc2cf1a675b19c89cf0633
parentSolve fdo#69926 Wrong default notation for galaxy icon theme (diff)
downloadcore-c400d41b93421268d1b71f9b029285fc8a855ba0.tar.gz
core-c400d41b93421268d1b71f9b029285fc8a855ba0.zip
Some clean-up
Change-Id: I87cc4a6840090076007d268ae19eb2cfd3408e7c
-rw-r--r--chart2/source/controller/accessibility/AccessibleBase.cxx1
-rw-r--r--editeng/source/uno/unotext.cxx8
-rw-r--r--sd/source/ui/slideshow/slideshow.cxx2
3 files changed, 4 insertions, 7 deletions
diff --git a/chart2/source/controller/accessibility/AccessibleBase.cxx b/chart2/source/controller/accessibility/AccessibleBase.cxx
index 714662032ed2..cc075f7ad95e 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 fc58fffcae07..f9b09dd1d544 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 7c305e85032f..2bab38d95fcd 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>