diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-23 01:50:30 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-04-23 01:50:30 +0200 |
commit | 7d7080b02df5e292ba3ceedaf28e3f704d9c1ab2 (patch) | |
tree | a81eabcc99cf7f2a96d43b2c4d58d328dc75fe6c | |
parent | 2aaea67759a59579de8b8b93ba0413b64e74e20b (diff) |
move one more bool a prefix to b
Change-Id: Id45b20e2216781e346746723856a2b4dfac81df9
-rw-r--r-- | oox/source/export/chartexport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/export/chartexport.cxx b/oox/source/export/chartexport.cxx index 3c609befe7f6..5d65f8a8401e 100644 --- a/oox/source/export/chartexport.cxx +++ b/oox/source/export/chartexport.cxx @@ -3049,10 +3049,10 @@ void ChartExport::exportTrendlines( Reference< chart2::XDataSeries > xSeries ) XML_val, OString::number(aExtrapolateBackward).getStr(), FSEND ); - bool aForceIntercept = false; - xProperties->getPropertyValue("ForceIntercept") >>= aForceIntercept; + bool bForceIntercept = false; + xProperties->getPropertyValue("ForceIntercept") >>= bForceIntercept; - if (aForceIntercept) + if (bForceIntercept) { double aInterceptValue = 0.0; xProperties->getPropertyValue("InterceptValue") >>= aInterceptValue; |