diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-20 20:59:28 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-21 06:45:27 +0200 |
commit | c93a4d3d602e4126c2a086e44733a33862dd57a1 (patch) | |
tree | 4ba673c443eeba75edba17d0044092ad5b3a3f68 /oox | |
parent | eeaa87c1d92c959fb4e57fa2967587b7f416470d (diff) |
use b as prefix for boolean values
Change-Id: Id06b8347d965c1388adad6df9c1c0ad3e8213986
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/export/chartexport.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
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 ) ); |