summaryrefslogtreecommitdiffstats
path: root/sc/source/core/tool/token.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/token.cxx')
-rw-r--r--sc/source/core/tool/token.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/token.cxx b/sc/source/core/tool/token.cxx
index 8f58651355ac..6618fa468a3f 100644
--- a/sc/source/core/tool/token.cxx
+++ b/sc/source/core/tool/token.cxx
@@ -1282,7 +1282,7 @@ void ScTokenArray::CheckForThreading( const FormulaToken& r )
#if HAVE_CPP_CONSTINIT_SORTED_VECTOR
constinit
#endif
- static const o3tl::sorted_vector<OpCode> aThreadedCalcBlackList({
+ static const o3tl::sorted_vector<OpCode> aThreadedCalcDenyList({
ocIndirect,
ocMacro,
ocOffset,
@@ -1325,7 +1325,7 @@ void ScTokenArray::CheckForThreading( const FormulaToken& r )
OpCode eOp = r.GetOpCode();
- if (aThreadedCalcBlackList.find(eOp) != aThreadedCalcBlackList.end())
+ if (aThreadedCalcDenyList.find(eOp) != aThreadedCalcDenyList.end())
{
SAL_INFO("sc.core.formulagroup", "opcode " << formula::FormulaCompiler().GetOpCodeMap(sheet::FormulaLanguage::ENGLISH)->getSymbol(eOp)
<< "(" << int(eOp) << ") disables threaded calculation of formula group");