Kaydet (Commit) bed0447c authored tarafından Daniel Bankston's avatar Daniel Bankston Kaydeden (comit) Kohei Yoshida

Check for more cases of functions that should always be recalculated

Thanks to Eike Rathke for pointing this out.

Change-Id: Ie2ce2ebe54cd290a7bf1c55d58790e21833b1105
üst 5fd1516f
...@@ -1101,7 +1101,8 @@ void ScFormulaCell::CompileXML( ScProgress& rProgress ) ...@@ -1101,7 +1101,8 @@ void ScFormulaCell::CompileXML( ScProgress& rProgress )
pDocument->SetHasMacroFunc( true ); pDocument->SetHasMacroFunc( true );
//volatile cells must be added here for import //volatile cells must be added here for import
if( pCode->IsRecalcModeAlways() ) if( pCode->IsRecalcModeAlways() || pCode->IsRecalcModeForced() ||
pCode->IsRecalcModeOnLoad() || pCode->IsRecalcModeOnLoadOnce() )
pDocument->PutInFormulaTree(this); pDocument->PutInFormulaTree(this);
} }
......
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