diff options
author | Noel Grandin <noel@peralex.com> | 2013-10-31 17:16:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-08 08:44:33 +0200 |
commit | a5536d9a0eac922d18f9008122034ca943d50148 (patch) | |
tree | 7144cf59587b5835f8bf2f353739836b4dd49956 /sw/source/ui/vba/vbatemplate.cxx | |
parent | 3cc85b071fdcf75adf8bcb3d59984940395c81e1 (diff) |
remove unnecessary use of OUString constructor in SW module
Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1
Diffstat (limited to 'sw/source/ui/vba/vbatemplate.cxx')
-rw-r--r-- | sw/source/ui/vba/vbatemplate.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbatemplate.cxx b/sw/source/ui/vba/vbatemplate.cxx index c641baa9b723..0da51fd934d9 100644 --- a/sw/source/ui/vba/vbatemplate.cxx +++ b/sw/source/ui/vba/vbatemplate.cxx @@ -127,7 +127,7 @@ SwVbaTemplate::getServiceNames() if ( aServiceNames.getLength() == 0 ) { aServiceNames.realloc( 1 ); - aServiceNames[ 0 ] = OUString("ooo.vba.word.Template" ); + aServiceNames[ 0 ] = "ooo.vba.word.Template"; } return aServiceNames; } |