summaryrefslogtreecommitdiff
path: root/xmloff/source/chart/SchXMLExport.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/chart/SchXMLExport.cxx')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index 26401f548e0b..4a46a0fec92e 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -532,7 +532,7 @@ OUString lcl_flattenStringSequence( const Sequence< OUString > & rSequence )
if( !rSequence[nIndex].isEmpty())
{
if( bPrecedeWithSpace )
- aResult.append( static_cast< sal_Unicode >( ' ' ));
+ aResult.append( ' ' );
aResult.append( rSequence[nIndex] );
bPrecedeWithSpace = true;
}
@@ -1113,7 +1113,7 @@ static OUString lcl_GetStringFromNumberSequence( const ::com::sun::star::uno::Se
if(nIndex>=0)
{
if(bHasPredecessor)
- aBuf.append( static_cast< sal_Unicode >( ' ' ));
+ aBuf.append( ' ' );
aBuf.append( nIndex, 10 );
bHasPredecessor = true;
}