summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-21 03:25:07 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-21 02:18:39 +0000
commitf18a996409657a2f8f53cca1fad3c045f8f031ec (patch)
treeeb92b91444da980eea18fbaa7b88c18fb9ab3833
parent348c64e51593d42999a4130690377771b6bc9942 (diff)
use correct separator for ScRangeList, tdf#99947
Change-Id: I2ee291207e899e9d64879176714f12d56dc69112 Reviewed-on: https://gerrit.libreoffice.org/25229 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/filter/excel/xecontent.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx
index fdc9d9a8c045..8bef80753b5e 100644
--- a/sc/source/filter/excel/xecontent.cxx
+++ b/sc/source/filter/excel/xecontent.cxx
@@ -1248,7 +1248,7 @@ XclExpCondfmt::XclExpCondfmt( const XclExpRoot& rRoot, const ScConditionalFormat
else if(pFormatEntry->GetType() == condformat::DATE)
maCFList.AppendNewRecord( new XclExpDateFormat( GetRoot(), static_cast<const ScCondDateFormatEntry&>(*pFormatEntry), ++rIndex ) );
}
- aScRanges.Format( msSeqRef, ScRefFlags::VALID, nullptr, formula::FormulaGrammar::CONV_XL_A1 );
+ aScRanges.Format( msSeqRef, ScRefFlags::VALID, nullptr, formula::FormulaGrammar::CONV_XL_OOX, ' ' );
if(!aExtEntries.empty() && xExtLst.get())
{