diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:26:41 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-14 21:28:11 +0100 |
commit | f95d743edbc91a65861f293b9d10e0d38000db0b (patch) | |
tree | 36021246a29825abd4b4e59a6774c54da1f64afd /sc/source | |
parent | 353fd33edac98961816daec78a7a9f5a3a760d5b (diff) |
The "true" is likely meant for sal_Bool bAppendStr, not sal_Unicode cSeparator
Change-Id: Ia9fe63ce3d0cefbca708f0da6d88fd33c8b0abaf
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/filter/xml/xmlexprt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xml/xmlexprt.cxx b/sc/source/filter/xml/xmlexprt.cxx index 3c1adc11356f..56399a59452c 100644 --- a/sc/source/filter/xml/xmlexprt.cxx +++ b/sc/source/filter/xml/xmlexprt.cxx @@ -4727,7 +4727,7 @@ void ScXMLExport::WriteConsolidation() sStrData = ""; for( sal_Int32 nIndex = 0; nIndex < pCons->nDataAreaCount; ++nIndex ) - ScRangeStringConverter::GetStringFromArea( sStrData, *pCons->ppDataAreas[ nIndex ], pDoc, FormulaGrammar::CONV_OOO, true ); + ScRangeStringConverter::GetStringFromArea( sStrData, *pCons->ppDataAreas[ nIndex ], pDoc, FormulaGrammar::CONV_OOO, ' ', true ); AddAttribute( XML_NAMESPACE_TABLE, XML_SOURCE_CELL_RANGE_ADDRESSES, sStrData ); ScRangeStringConverter::GetStringFromAddress( sStrData, ScAddress( pCons->nCol, pCons->nRow, pCons->nTab ), pDoc, FormulaGrammar::CONV_OOO ); |