diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 11:22:26 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 08:36:06 +0200 |
commit | f12f51316a2cb230138ec6dcdc7295e18b6fce28 (patch) | |
tree | 804d24d28af3c15026353fa780199e642c7d5cf1 /sc/source/ui/vba/vbamenuitem.cxx | |
parent | 2ac50736e4a3d442a43d3f9d368be45c57ad9285 (diff) |
remove unnecessary use of OUString constructor in SC module
Change-Id: I2d40c589eb3b5c99300f36cd705c32cf824b2a98
Diffstat (limited to 'sc/source/ui/vba/vbamenuitem.cxx')
-rw-r--r-- | sc/source/ui/vba/vbamenuitem.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbamenuitem.cxx b/sc/source/ui/vba/vbamenuitem.cxx index 87f60e605749..f70eb5e1707f 100644 --- a/sc/source/ui/vba/vbamenuitem.cxx +++ b/sc/source/ui/vba/vbamenuitem.cxx @@ -58,7 +58,7 @@ ScVbaMenuItem::getServiceNames() if ( aServiceNames.getLength() == 0 ) { aServiceNames.realloc( 1 ); - aServiceNames[ 0 ] = OUString("ooo.vba.excel.MenuItem" ); + aServiceNames[ 0 ] = "ooo.vba.excel.MenuItem"; } return aServiceNames; } |