Kaydet (Commit) 7d7080b0 authored tarafından Markus Mohrhard's avatar Markus Mohrhard

move one more bool a prefix to b

Change-Id: Id45b20e2216781e346746723856a2b4dfac81df9
üst 2aaea677
...@@ -3049,10 +3049,10 @@ void ChartExport::exportTrendlines( Reference< chart2::XDataSeries > xSeries ) ...@@ -3049,10 +3049,10 @@ void ChartExport::exportTrendlines( Reference< chart2::XDataSeries > xSeries )
XML_val, OString::number(aExtrapolateBackward).getStr(), XML_val, OString::number(aExtrapolateBackward).getStr(),
FSEND ); FSEND );
bool aForceIntercept = false; bool bForceIntercept = false;
xProperties->getPropertyValue("ForceIntercept") >>= aForceIntercept; xProperties->getPropertyValue("ForceIntercept") >>= bForceIntercept;
if (aForceIntercept) if (bForceIntercept)
{ {
double aInterceptValue = 0.0; double aInterceptValue = 0.0;
xProperties->getPropertyValue("InterceptValue") >>= aInterceptValue; xProperties->getPropertyValue("InterceptValue") >>= aInterceptValue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment