summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oox/source/export/chartexport.cxx12
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 ) );