summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/xpackcreator.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 18:04:19 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 14:50:59 +0200
commit9d7712b48ddaa0f308b669625b5ebbb1a3e75634 (patch)
treef9e16d3650522393bc943bf4a5b6f08c3f7f5940 /sfx2/source/appl/xpackcreator.cxx
parentda20c7f4396b127072074f4d7999ed29deee02f0 (diff)
remove unnecessary use of OUString constructor in SFX2 module
Change-Id: Ieafc413136a9b4b907de034914d918212e4c16e3
Diffstat (limited to 'sfx2/source/appl/xpackcreator.cxx')
-rw-r--r--sfx2/source/appl/xpackcreator.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/appl/xpackcreator.cxx b/sfx2/source/appl/xpackcreator.cxx
index 0b7c70c49f3e..fbe0a40f7f2a 100644
--- a/sfx2/source/appl/xpackcreator.cxx
+++ b/sfx2/source/appl/xpackcreator.cxx
@@ -38,8 +38,8 @@ using namespace ::com::sun::star;
uno::Sequence< OUString > SAL_CALL OPackageStructureCreator::impl_getStaticSupportedServiceNames()
{
uno::Sequence< OUString > aRet(2);
- aRet[0] = OUString("com.sun.star.embed.PackageStructureCreator");
- aRet[1] = OUString("com.sun.star.comp.embed.PackageStructureCreator");
+ aRet[0] = "com.sun.star.embed.PackageStructureCreator";
+ aRet[1] = "com.sun.star.comp.embed.PackageStructureCreator";
return aRet;
}