summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/excdoc.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/excel/excdoc.cxx')
-rw-r--r--sc/source/filter/excel/excdoc.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/filter/excel/excdoc.cxx b/sc/source/filter/excel/excdoc.cxx
index abd325868e17..34718089d894 100644
--- a/sc/source/filter/excel/excdoc.cxx
+++ b/sc/source/filter/excel/excdoc.cxx
@@ -81,8 +81,7 @@ using namespace oox;
static String lcl_GetVbaTabName( SCTAB n )
{
- String aRet( RTL_CONSTASCII_USTRINGPARAM( "__VBA__" ) );
- aRet += OUString::number( static_cast<sal_uInt16>(n) );
+ OUString aRet = "__VBA__" + OUString::number( static_cast<sal_uInt16>(n) );
return aRet;
}