summaryrefslogtreecommitdiff
path: root/sc/source/ui/vba/vbachart.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 11:22:26 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 08:36:06 +0200
commitf12f51316a2cb230138ec6dcdc7295e18b6fce28 (patch)
tree804d24d28af3c15026353fa780199e642c7d5cf1 /sc/source/ui/vba/vbachart.cxx
parent2ac50736e4a3d442a43d3f9d368be45c57ad9285 (diff)
remove unnecessary use of OUString constructor in SC module
Change-Id: I2d40c589eb3b5c99300f36cd705c32cf824b2a98
Diffstat (limited to 'sc/source/ui/vba/vbachart.cxx')
-rw-r--r--sc/source/ui/vba/vbachart.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbachart.cxx b/sc/source/ui/vba/vbachart.cxx
index 700ecc20a7b2..1da5bc67e8f8 100644
--- a/sc/source/ui/vba/vbachart.cxx
+++ b/sc/source/ui/vba/vbachart.cxx
@@ -1065,7 +1065,7 @@ ScVbaChart::getServiceNames()
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
- aServiceNames[ 0 ] = OUString("ooo.vba.excel.Chart" );
+ aServiceNames[ 0 ] = "ooo.vba.excel.Chart";
}
return aServiceNames;
}