diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-24 18:06:16 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-24 18:06:16 +0100 |
commit | f17568f9f3ea6cded3fe13437977ef841d56a7c1 (patch) | |
tree | 38daac723edcf53a33155c64738b3bda64cfba4f | |
parent | f50cf8251bcbfe99dbb52cba931e6c06fee7fe17 (diff) |
loplugin:implicitboolconversion
Change-Id: I7d1be2365c2e18a007a26e63195ea0cb169ee254
-rw-r--r-- | sc/source/filter/excel/xecontent.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx index ca71cf96a1b1..f3f0cf393e12 100644 --- a/sc/source/filter/excel/xecontent.cxx +++ b/sc/source/filter/excel/xecontent.cxx @@ -1299,7 +1299,7 @@ void XclExpDataBar::SaveXml( XclExpXmlStream& rStrm ) FSEND ); rWorksheet->startElement( XML_dataBar, - XML_showValue, OString::number(!mrFormat.GetDataBarData()->mbOnlyBar), + XML_showValue, OString::number(int(!mrFormat.GetDataBarData()->mbOnlyBar)), XML_minLength, OString::number(sal_uInt32(mrFormat.GetDataBarData()->mnMinLength)), XML_maxLength, OString::number(sal_uInt32(mrFormat.GetDataBarData()->mnMaxLength)), FSEND ); |