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/vbapanes.cxx | |
parent | 3cc85b071fdcf75adf8bcb3d59984940395c81e1 (diff) |
remove unnecessary use of OUString constructor in SW module
Change-Id: I015959dce567e5579ebb5c775fb57ae14e1cd3b1
Diffstat (limited to 'sw/source/ui/vba/vbapanes.cxx')
-rw-r--r-- | sw/source/ui/vba/vbapanes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbapanes.cxx b/sw/source/ui/vba/vbapanes.cxx index f7971f784260..8bf6b45ab87f 100644 --- a/sw/source/ui/vba/vbapanes.cxx +++ b/sw/source/ui/vba/vbapanes.cxx @@ -109,7 +109,7 @@ SwVbaPanes::getServiceNames() if ( sNames.getLength() == 0 ) { sNames.realloc( 1 ); - sNames[0] = OUString("ooo.vba.word.Panes"); + sNames[0] = "ooo.vba.word.Panes"; } return sNames; } |