summaryrefslogtreecommitdiff
path: root/formula/source
diff options
context:
space:
mode:
authorEike Rathke <erack@apache.org>2011-09-08 23:38:50 +0000
committerEike Rathke <erack@apache.org>2011-09-08 23:38:50 +0000
commit9c5a533adc319d3a5db050f7e2ac98c84edfd8c9 (patch)
treeee8d73fb8e2553c05542b1ff92479f3234b1a867 /formula/source
parenta185436e549beabe302030b76a89ec5941eabd58 (diff)
calc68: #i117806# fixed negated condition, made jump matrix work again
Original committer: Eike Rathke [er] <eike.rathke@oracle.com>
Diffstat (limited to 'formula/source')
-rw-r--r--formula/source/core/api/token.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/formula/source/core/api/token.cxx b/formula/source/core/api/token.cxx
index b644d1cd8fb3..a88ff1a75388 100644
--- a/formula/source/core/api/token.cxx
+++ b/formula/source/core/api/token.cxx
@@ -1319,7 +1319,7 @@ const FormulaToken* FormulaTokenIterator::GetNonEndOfPathToken( short nIdx ) con
bool FormulaTokenIterator::IsEndOfPath() const
{
- return GetNonEndOfPathToken( pCur->nPC + 1) != NULL;
+ return GetNonEndOfPathToken( pCur->nPC + 1) == NULL;
}
// -----------------------------------------------------------------------------