summaryrefslogtreecommitdiff
path: root/sc/source/core/data/cell.cxx
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-02-15 13:49:43 +0100
committerEike Rathke <erack@redhat.com>2013-02-15 13:57:27 +0100
commita60712be0e05ec2c2e3d48ec77511412151988ea (patch)
tree77bbe9b66e92262e7020006cd17c3ac8e52e1535 /sc/source/core/data/cell.cxx
parentff319d052659974d1aa5d6ac8c468a7259a46cc4 (diff)
renamed SetRecalcMode...() to SetExclusiveRecalcMode...()
To emphasize exclusiveness of the four basic recalc modes renamed the corresponding methods. Change-Id: If6f99d2c84e4a042a3a3e3640cf416d306a2d0c5
Diffstat (limited to 'sc/source/core/data/cell.cxx')
-rw-r--r--sc/source/core/data/cell.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/cell.cxx b/sc/source/core/data/cell.cxx
index 0967e811ab46..75d1ced0eddf 100644
--- a/sc/source/core/data/cell.cxx
+++ b/sc/source/core/data/cell.cxx
@@ -1698,7 +1698,7 @@ void ScFormulaCell::InterpretTail( ScInterpretTailParameter eTailParam )
break;
case ScInterpreter::VOLATILE_MACRO:
// The formula contains a volatile macro.
- pCode->SetRecalcModeAlways();
+ pCode->SetExclusiveRecalcModeAlways();
pDocument->PutInFormulaTree(this);
StartListeningTo(pDocument);
break;
@@ -1707,7 +1707,7 @@ void ScFormulaCell::InterpretTail( ScInterpretTailParameter eTailParam )
{
// The formula was previously volatile, but no more.
EndListeningTo(pDocument);
- pCode->SetRecalcModeNormal();
+ pCode->SetExclusiveRecalcModeNormal();
}
else
{