summaryrefslogtreecommitdiff
path: root/editeng
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 /editeng
parent99ba2fd24fcfc086353221d78ae64ffe159db3d6 (diff)
Some clean-up
Change-Id: I87cc4a6840090076007d268ae19eb2cfd3408e7c
Diffstat (limited to 'editeng')
-rw-r--r--editeng/source/uno/unotext.cxx8
1 files changed, 4 insertions, 4 deletions
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;
}