diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:50:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-19 17:50:50 +0200 |
commit | bbc6414be17799b90ef84b1cecab76ee10dede9b (patch) | |
tree | e9c2b2b32110f721a76a0893c388a49eca67e3b3 /sc/source/ui/unoobj/chart2uno.cxx | |
parent | d14b6230ded413be419591b929beed58fc1bbc77 (diff) |
loplugin:defaultparams
Change-Id: I9bfa7be4a8035d6dfbd0bd13505ba13c3d085455
Diffstat (limited to 'sc/source/ui/unoobj/chart2uno.cxx')
-rw-r--r-- | sc/source/ui/unoobj/chart2uno.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/chart2uno.cxx b/sc/source/ui/unoobj/chart2uno.cxx index 2bec7444755f..d31c882681e9 100644 --- a/sc/source/ui/unoobj/chart2uno.cxx +++ b/sc/source/ui/unoobj/chart2uno.cxx @@ -2265,8 +2265,6 @@ OUString SAL_CALL ScChart2DataProvider::convertRangeToXML( const OUString& sRang OUString SAL_CALL ScChart2DataProvider::convertRangeFromXML( const OUString& sXMLRange ) throw ( uno::RuntimeException, lang::IllegalArgumentException, std::exception ) { - const sal_Unicode cSep = ' '; - if (!m_pDocument) { // #i74062# When loading flat XML, this is called before the referenced sheets are in the document, @@ -2277,7 +2275,7 @@ OUString SAL_CALL ScChart2DataProvider::convertRangeFromXML( const OUString& sXM while( nOffset >= 0 ) { OUString sToken; - ScRangeStringConverter::GetTokenByOffset( sToken, sXMLRange, nOffset, cSep ); + ScRangeStringConverter::GetTokenByOffset( sToken, sXMLRange, nOffset ); if( nOffset >= 0 ) { // convert one address (remove dots) |