summaryrefslogtreecommitdiff
path: root/sc/source/core/data/segmenttree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/segmenttree.cxx')
-rw-r--r--sc/source/core/data/segmenttree.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/data/segmenttree.cxx b/sc/source/core/data/segmenttree.cxx
index dd40e726fd9e..b24ba260879b 100644
--- a/sc/source/core/data/segmenttree.cxx
+++ b/sc/source/core/data/segmenttree.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -137,7 +137,7 @@ typename ScFlatSegmentsImpl<_ValueType, _ExtValueType>::ValueType ScFlatSegments
}
template<typename _ValueType, typename _ExtValueType>
-typename ScFlatSegmentsImpl<_ValueType, _ExtValueType>::ExtValueType
+typename ScFlatSegmentsImpl<_ValueType, _ExtValueType>::ExtValueType
ScFlatSegmentsImpl<_ValueType, _ExtValueType>::getSumValue(SCCOLROW nPos1, SCCOLROW nPos2)
{
RangeData aData;
@@ -209,7 +209,7 @@ SCCOLROW ScFlatSegmentsImpl<_ValueType, _ExtValueType>::findLastNotOf(ValueType
{
SCCOLROW nPos = numeric_limits<SCCOLROW>::max(); // position not found.
typename fst_type::const_reverse_iterator itr = maSegments.rbegin(), itrEnd = maSegments.rend();
- // Note that when searching in reverse direction, we need to skip the first
+ // Note that when searching in reverse direction, we need to skip the first
// node, since the right-most leaf node does not store a valid value.
for (++itr; itr != itrEnd; ++itr)
{
@@ -301,7 +301,7 @@ bool ScFlatBoolRowSegments::ForwardIterator::getValue(SCROW nPos, bool& rVal)
ScFlatBoolRowSegments::RangeData aData;
if (!mrSegs.getRangeData(mnCurPos, aData))
return false;
-
+
mbCurValue = aData.mbValue;
mnLastPos = aData.mnRow2;
}
@@ -499,7 +499,7 @@ bool ScFlatUInt16RowSegments::ForwardIterator::getValue(SCROW nPos, sal_uInt16&
ScFlatUInt16RowSegments::RangeData aData;
if (!mrSegs.getRangeData(mnCurPos, aData))
return false;
-
+
mnCurValue = aData.mnValue;
mnLastPos = aData.mnRow2;
}