summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxvar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/sbx/sbxvar.cxx')
-rw-r--r--basic/source/sbx/sbxvar.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx
index 386de3606854..784e9d11aa36 100644
--- a/basic/source/sbx/sbxvar.cxx
+++ b/basic/source/sbx/sbxvar.cxx
@@ -255,7 +255,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
if( cType != ' ' )
{
- aTmp += OUString(sal_Unicode(cType));
+ aTmp += OUStringLiteral1(cType);
}
}
aTmp += "(";
@@ -288,7 +288,7 @@ const OUString& SbxVariable::GetName( SbxNameType t ) const
}
if( cType != ' ' )
{
- aTmp += OUString((sal_Unicode)cType);
+ aTmp += OUStringLiteral1(cType);
if( i->eType & SbxARRAY )
{
aTmp += "()";