From c93a4d3d602e4126c2a086e44733a33862dd57a1 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Mon, 20 Apr 2015 20:59:28 +0200 Subject: use b as prefix for boolean values Change-Id: Id06b8347d965c1388adad6df9c1c0ad3e8213986 --- oox/source/export/chartexport.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'oox') diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 3fa9ba1d0412..445c3411cb06 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -3058,19 +3058,19 @@ void ChartExport::exportTrendlines( Reference< chart2::XDataSeries > xSeries ) Reference< XPropertySet > xEquationProperties( xRegCurve->getEquationProperties() ); // Show Equation - bool aShowEquation = false; - xEquationProperties->getPropertyValue("ShowEquation") >>= aShowEquation; + bool bShowEquation = false; + xEquationProperties->getPropertyValue("ShowEquation") >>= bShowEquation; // Show R^2 - bool aShowCorrelationCoefficient = false; - xEquationProperties->getPropertyValue("ShowCorrelationCoefficient") >>= aShowCorrelationCoefficient; + bool bShowCorrelationCoefficient = false; + xEquationProperties->getPropertyValue("ShowCorrelationCoefficient") >>= bShowCorrelationCoefficient; pFS->singleElement( FSNS( XML_c, XML_dispRSqr ), - XML_val, aShowCorrelationCoefficient ? "1" : "0", + XML_val, bShowCorrelationCoefficient ? "1" : "0", FSEND ); pFS->singleElement( FSNS( XML_c, XML_dispEq ), - XML_val, aShowEquation ? "1" : "0", + XML_val, bShowEquation ? "1" : "0", FSEND ); pFS->endElement( FSNS( XML_c, XML_trendline ) ); -- cgit