summaryrefslogtreecommitdiff
path: root/sw/source/ui/vba/vbatabstops.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/vbatabstops.cxx
parent3cc85b071fdcf75adf8bcb3d59984940395c81e1 (diff)
remove unnecessary use of OUString constructor in SW module
Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1
Diffstat (limited to 'sw/source/ui/vba/vbatabstops.cxx')
-rw-r--r--sw/source/ui/vba/vbatabstops.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbatabstops.cxx b/sw/source/ui/vba/vbatabstops.cxx
index bdacbe2908ff..c4ea6eae7761 100644
--- a/sw/source/ui/vba/vbatabstops.cxx
+++ b/sw/source/ui/vba/vbatabstops.cxx
@@ -262,7 +262,7 @@ SwVbaTabStops::getServiceNames()
if ( sNames.getLength() == 0 )
{
sNames.realloc( 1 );
- sNames[0] = OUString("ooo.vba.word.TabStops");
+ sNames[0] = "ooo.vba.word.TabStops";
}
return sNames;
}