summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatarina Behrens <bubli@bubli.org>2015-02-04 22:43:31 +0100
committerKatarina Behrens <bubli@bubli.org>2015-02-04 22:43:31 +0100
commite98b6027458dd9410e27c5f273f4db5cc1443b01 (patch)
tree094a9320006e264e1c05ff7f9d6b5aa41692bb9f
parent535f34bba60e06d390a6f3802072b16a9841bc4e (diff)
Seems that BS() does something else than I thought
XclXmlUtils::ToPsz is the one I needed Change-Id: If4aee9a2a9c943535d7e07b08f61b419ac2c8a22
-rw-r--r--sc/source/filter/excel/xeextlst.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/filter/excel/xeextlst.cxx b/sc/source/filter/excel/xeextlst.cxx
index 9015672cc31d..c621c2495a45 100644
--- a/sc/source/filter/excel/xeextlst.cxx
+++ b/sc/source/filter/excel/xeextlst.cxx
@@ -14,7 +14,6 @@
#include "xename.hxx"
#include "xecontent.hxx"
#include "tokenarray.hxx"
-#include <oox/export/utils.hxx>
using namespace ::oox;
@@ -151,7 +150,7 @@ void XclExpExtDataBar::SaveXml( XclExpXmlStream& rStrm )
XML_minLength, OString::number(0).getStr(),
XML_maxLength, OString::number(100).getStr(),
XML_axisPosition, getAxisPosition(meAxisPosition),
- XML_gradient, BS(mbGradient),
+ XML_gradient, XclXmlUtils::ToPsz(mbGradient),
FSEND );
mpLowerLimit->SaveXml( rStrm );