summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/jumpmatrix.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/jumpmatrix.cxx')
-rw-r--r--sc/source/core/tool/jumpmatrix.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/jumpmatrix.cxx b/sc/source/core/tool/jumpmatrix.cxx
index dc90c8686c36..ea27b972afdf 100644
--- a/sc/source/core/tool/jumpmatrix.cxx
+++ b/sc/source/core/tool/jumpmatrix.cxx
@@ -30,7 +30,7 @@ const SCSIZE kBufferThreshhold = 128;
ScJumpMatrix::ScJumpMatrix(SCSIZE nColsP, SCSIZE nRowsP)
: pJump(new ScJumpMatrixEntry[nColsP * nRowsP])
, pMat(new ScMatrix(nColsP, nRowsP))
- , pParams(NULL)
+ , pParams(nullptr)
, nCols(nColsP)
, nRows(nRowsP)
, nCurCol(0)
@@ -174,7 +174,7 @@ void ScJumpMatrix::SetNewResMat(SCSIZE nNewCols, SCSIZE nNewRows)
bool ScJumpMatrix::HasResultMatrix() const
{
// We now always have a matrix but caller logic may still want to check it.
- return pMat.get() != NULL;
+ return pMat.get() != nullptr;
}
void ScJumpMatrix::FlushBufferOtherThan( ScJumpMatrix::BufferType eType, SCSIZE nC, SCSIZE nR )