[Libreoffice-commits] core.git: sc/source
Katarina Behrens
bubli at bubli.org
Wed Feb 4 13:48:30 PST 2015
sc/source/filter/excel/xeextlst.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit e98b6027458dd9410e27c5f273f4db5cc1443b01
Author: Katarina Behrens <bubli at bubli.org>
Date: Wed Feb 4 22:43:31 2015 +0100
Seems that BS() does something else than I thought
XclXmlUtils::ToPsz is the one I needed
Change-Id: If4aee9a2a9c943535d7e07b08f61b419ac2c8a22
diff --git a/sc/source/filter/excel/xeextlst.cxx b/sc/source/filter/excel/xeextlst.cxx
index 9015672..c621c24 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 );
More information about the Libreoffice-commits
mailing list