summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-02 12:34:27 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2011-11-02 12:35:23 +0100
commitb03e931439c54f4abaa520cf11ed24560ca1709a (patch)
treebf7c7d47b4951831d39f2a46f8dcbbed2adaa3bd
parentde04c92dea40c906fdf2b9058bd3139134d62f15 (diff)
we need to use ValidColRowOrRepeated, silly mistake by make
-rw-r--r--sc/source/core/tool/scmatrix.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx
index 1767fceefe7b..dea2c2896948 100644
--- a/sc/source/core/tool/scmatrix.cxx
+++ b/sc/source/core/tool/scmatrix.cxx
@@ -591,7 +591,7 @@ bool ScMatrixImpl::IsEmpty( SCSIZE nC, SCSIZE nR ) const
bool ScMatrixImpl::IsEmptyPath( SCSIZE nC, SCSIZE nR ) const
{
// 'Empty path' is empty plus non-zero flag.
- if (ValidColRowReplicated( nC, nR ))
+ if (ValidColRowOrReplicated( nC, nR ))
return maMat.get_type(nR, nC) == ::mdds::element_empty && maMat.get_flag(nR, nC) != 0;
else
return true;