summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-05-15 10:50:23 +0300
committerTor Lillqvist <tml@collabora.com>2017-05-15 11:04:16 +0300
commit7c9ee6c6b2e0486c3b2ea54515aa77ac0e6569ae (patch)
treebd464952610a3c4eda359ea8d3d4bf01b779accc /sc
parent2300481c80c177ce0c830a804c5990eaad250eb3 (diff)
Typo: s/threashold/threshold
Change-Id: I42af7f4c27084e41c63b8d3c8c3111dd814eb74d
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/formulalogger.hxx4
-rw-r--r--sc/source/core/data/formulacell.cxx2
-rw-r--r--sc/source/core/tool/formulalogger.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/formulalogger.hxx b/sc/inc/formulalogger.hxx
index 39bad7d13bd7..879418eab0b4 100644
--- a/sc/inc/formulalogger.hxx
+++ b/sc/inc/formulalogger.hxx
@@ -110,7 +110,7 @@ public:
const ScAddress& rCellPos, const ScAddress& rRefPos,
const formula::FormulaToken& rToken );
- void addGroupSizeThreasholdMessage( const ScFormulaCell& rCell );
+ void addGroupSizeThresholdMessage( const ScFormulaCell& rCell );
/**
* Call this when the group calculation has finished successfully.
@@ -167,7 +167,7 @@ public:
(void) this; /* loplugin:staticmethods */
}
- void addGroupSizeThreasholdMessage( const ScFormulaCell& /*rCell*/ )
+ void addGroupSizeThresholdMessage( const ScFormulaCell& /*rCell*/ )
{
(void) this; /* loplugin:staticmethods */
}
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx
index 04c19257ae17..552f73e83c32 100644
--- a/sc/source/core/data/formulacell.cxx
+++ b/sc/source/core/data/formulacell.cxx
@@ -4088,7 +4088,7 @@ bool ScFormulaCell::InterpretFormulaGroup()
if (GetWeight() < ScInterpreter::GetGlobalConfig().mnOpenCLMinimumFormulaGroupSize)
{
mxGroup->meCalcState = sc::GroupCalcDisabled;
- aScope.addGroupSizeThreasholdMessage(*this);
+ aScope.addGroupSizeThresholdMessage(*this);
return false;
}
diff --git a/sc/source/core/tool/formulalogger.cxx b/sc/source/core/tool/formulalogger.cxx
index ffa29ecd06a4..ff6964619024 100644
--- a/sc/source/core/tool/formulalogger.cxx
+++ b/sc/source/core/tool/formulalogger.cxx
@@ -214,7 +214,7 @@ void FormulaLogger::GroupScope::addRefMessage(
mpImpl->maMessages.push_back(aBuf.makeStringAndClear());
}
-void FormulaLogger::GroupScope::addGroupSizeThreasholdMessage( const ScFormulaCell& rCell )
+void FormulaLogger::GroupScope::addGroupSizeThresholdMessage( const ScFormulaCell& rCell )
{
OUStringBuffer aBuf;
aBuf.append("group length below minimum threshold (");