summaryrefslogtreecommitdiff
path: root/formula
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-02-25 08:09:43 +0100
committerFridrich Strba <fridrich@documentfoundation.org>2013-02-26 07:23:57 +0000
commitc4322062929815445f9f3f2b3a5c232a43d4abd3 (patch)
treee9924fae30eb535436cfa7177cd629094f376849 /formula
parenta9ce4176d274587de755147cf52bbec91b53fa2b (diff)
ocMacro and ocExternal need to be recalculated on load, fdo#60977
Change-Id: I9e69ca2feae44bc645e8a49e349557f0933a23eb Reviewed-on: https://gerrit.libreoffice.org/2413 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'formula')
-rw-r--r--formula/source/core/api/FormulaCompiler.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/formula/source/core/api/FormulaCompiler.cxx b/formula/source/core/api/FormulaCompiler.cxx
index 468ecd321a68..16b3fd5c5f24 100644
--- a/formula/source/core/api/FormulaCompiler.cxx
+++ b/formula/source/core/api/FormulaCompiler.cxx
@@ -1061,6 +1061,9 @@ void FormulaCompiler::Factor()
// Don't use SetRecalcModeOnLoad() which would override
// ModeAlways.
case ocConvert :
+ case ocDde:
+ case ocMacro:
+ case ocExternal:
pArr->AddRecalcMode( RECALCMODE_ONLOAD );
break;
// If the referred cell is moved the value changes.
@@ -1080,9 +1083,6 @@ void FormulaCompiler::Factor()
pArr->AddRecalcMode( RECALCMODE_ONLOAD );
pArr->SetHyperLink(true);
break;
- case ocDde:
- pArr->AddRecalcMode( RECALCMODE_ONLOAD );
- break;
default:
; // nothing
}