sc/inc/formulalogger.hxx | 4 ++-- sc/source/core/data/formulacell.cxx | 2 +- sc/source/core/tool/formulalogger.cxx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 7c9ee6c6b2e0486c3b2ea54515aa77ac0e6569ae Author: Tor Lillqvist <[email protected]> Date: Mon May 15 10:50:23 2017 +0300 Typo: s/threashold/threshold Change-Id: I42af7f4c27084e41c63b8d3c8c3111dd814eb74d 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 ("); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
