diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-02-03 15:32:54 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-02-03 15:33:25 +0100 |
commit | 773c976592cba5a373ea100e9968e231187def72 (patch) | |
tree | 3434599e2b8ba41935ff9d4036cb4c7ac1c2f65f /sc | |
parent | c36353d844f05e1de6a0c31cb6bf102887dc114a (diff) |
Typo: calulate->calculate
Change-Id: I33866a177eded1e96860cb07b16b753385b88319
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/inc/interpre.hxx | 2 | ||||
-rw-r--r-- | sc/source/core/tool/interpr5.cxx | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx index 04ee48eee7ed..b9fd9a29970a 100644 --- a/sc/source/core/inc/interpre.hxx +++ b/sc/source/core/inc/interpre.hxx @@ -724,7 +724,7 @@ void CalculateLookup(bool bHLookup); bool FillEntry(ScQueryEntry& rEntry); void CalculateAddSub(bool _bSub); void CalculateTrendGrowth(bool _bGrowth); -void CalulateRGPRKP(bool _bRKP); +void CalculateRGPRKP(bool _bRKP); void CalculateSumX2MY2SumX2DY2(bool _bSumX2DY2); void CalculateMatrixValue(const ScMatrix* pMat,SCSIZE nC,SCSIZE nR); bool CheckMatrix(bool _bLOG,sal_uInt8& nCase,SCSIZE& nCX,SCSIZE& nCY,SCSIZE& nRX,SCSIZE& nRY,SCSIZE& M,SCSIZE& N,ScMatrixRef& pMatX,ScMatrixRef& pMatY); diff --git a/sc/source/core/tool/interpr5.cxx b/sc/source/core/tool/interpr5.cxx index 2cf80982c40a..b2d213d2d183 100644 --- a/sc/source/core/tool/interpr5.cxx +++ b/sc/source/core/tool/interpr5.cxx @@ -2340,16 +2340,16 @@ bool ScInterpreter::CheckMatrix(bool _bLOG, sal_uInt8& nCase, SCSIZE& nCX, // LINEST void ScInterpreter::ScRGP() { - CalulateRGPRKP(false); + CalculateRGPRKP(false); } // LOGEST void ScInterpreter::ScRKP() { - CalulateRGPRKP(true); + CalculateRGPRKP(true); } -void ScInterpreter::CalulateRGPRKP(bool _bRKP) +void ScInterpreter::CalculateRGPRKP(bool _bRKP) { sal_uInt8 nParamCount = GetByte(); if (!MustHaveParamCount( nParamCount, 1, 4 )) |