diff options
Diffstat (limited to 'sc/source/ui/unoobj/chart2uno.cxx')
-rw-r--r-- | sc/source/ui/unoobj/chart2uno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/chart2uno.cxx b/sc/source/ui/unoobj/chart2uno.cxx index a39fed4a2a2c..8ebcf4f69fc1 100644 --- a/sc/source/ui/unoobj/chart2uno.cxx +++ b/sc/source/ui/unoobj/chart2uno.cxx @@ -117,7 +117,7 @@ struct lcl_appendTableNumber : public ::std::unary_function< SCTAB, void > { // there is no append with SCTAB or sal_Int16 m_rBuffer.append( static_cast< sal_Int32 >( nTab )); - m_rBuffer.append( sal_Unicode( ' ' )); + m_rBuffer.append( ' ' ); } private: OUStringBuffer & m_rBuffer; @@ -2281,7 +2281,7 @@ OUString SAL_CALL ScChart2DataProvider::convertRangeFromXML( const OUString& sXM aUIString = aUIString.copy( 1 ); if( !sRet.isEmpty() ) - sRet.append( (sal_Unicode) ';' ); + sRet.append( ';' ); sRet.append( aUIString ); } } |