summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-21 03:25:43 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-21 02:18:53 +0000
commit97ecd865c64d9f2bbba7002e87595f3b7401063b (patch)
tree7cab28cb2b6928bc0402541805bfb3fbdf9711d4
parentf18a996409657a2f8f53cca1fad3c045f8f031ec (diff)
use CONV_XL_OOX for xlsx export, related tdf#99947
Change-Id: Iff6ba46600a55a93eaa1f076b96bb18dec779f0e Reviewed-on: https://gerrit.libreoffice.org/25230 Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/filter/excel/xestream.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xestream.cxx b/sc/source/filter/excel/xestream.cxx
index 83958d99ade3..171479c69cd0 100644
--- a/sc/source/filter/excel/xestream.cxx
+++ b/sc/source/filter/excel/xestream.cxx
@@ -735,7 +735,7 @@ OString XclXmlUtils::ToOString( const ScRange& rRange )
OString XclXmlUtils::ToOString( const ScRangeList& rRangeList )
{
OUString s;
- rRangeList.Format(s, ScRefFlags::VALID, nullptr, FormulaGrammar::CONV_XL_A1, ' ');
+ rRangeList.Format(s, ScRefFlags::VALID, nullptr, FormulaGrammar::CONV_XL_OOX, ' ');
return ToOString( s );
}