summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbalistlevel.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-10-31 17:16:50 +0200
committerNoel Grandin <noel@peralex.com>2013-11-08 08:44:33 +0200
commita5536d9a0eac922d18f9008122034ca943d50148 (patch)
tree7144cf59587b5835f8bf2f353739836b4dd49956 /sw/source/ui/vba/vbalistlevel.cxx
parent3cc85b071fdcf75adf8bcb3d59984940395c81e1 (diff)
remove unnecessary use of OUString constructor in SW module
Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1
Diffstat (limited to 'sw/source/ui/vba/vbalistlevel.cxx')
-rw-r--r--sw/source/ui/vba/vbalistlevel.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbalistlevel.cxx b/sw/source/ui/vba/vbalistlevel.cxx
index 72ea2fb902d4..030ae9a90ae4 100644
--- a/sw/source/ui/vba/vbalistlevel.cxx
+++ b/sw/source/ui/vba/vbalistlevel.cxx
@@ -381,7 +381,7 @@ SwVbaListLevel::getServiceNames()
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
- aServiceNames[ 0 ] = OUString("ooo.vba.word.ListLevel" );
+ aServiceNames[ 0 ] = "ooo.vba.word.ListLevel";
}
return aServiceNames;
}