remove unnecessary use of OUString constructor in SC module

Change-Id: I2d40c589eb3b5c99300f36cd705c32cf824b2a98
This commit is contained in:
Noel Grandin
2013-11-04 11:22:26 +02:00
parent 2ac50736e4
commit f12f51316a
75 changed files with 168 additions and 178 deletions

View File

@@ -1387,7 +1387,7 @@ ScVbaApplication::getServiceNames()
if ( aServiceNames.getLength() == 0 )
{
aServiceNames.realloc( 1 );
aServiceNames[ 0 ] = OUString("ooo.vba.excel.Application" );
aServiceNames[ 0 ] = "ooo.vba.excel.Application";
}
return aServiceNames;
}