diff options
Diffstat (limited to 'sc/inc/segmenttree.hxx')
-rw-r--r-- | sc/inc/segmenttree.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/segmenttree.hxx b/sc/inc/segmenttree.hxx index a62e35606115..f1775fd34126 100644 --- a/sc/inc/segmenttree.hxx +++ b/sc/inc/segmenttree.hxx @@ -42,7 +42,7 @@ public: explicit ForwardIterator(ScFlatBoolRowSegments& rSegs); bool getValue(SCROW nPos, bool& rVal); - SCROW getLastPos() const; + SCROW getLastPos() const { return mnLastPos;} private: ScFlatBoolRowSegments& mrSegs; @@ -124,7 +124,7 @@ public: explicit ForwardIterator(ScFlatUInt16RowSegments& rSegs); bool getValue(SCROW nPos, sal_uInt16& rVal); - SCROW getLastPos() const; + SCROW getLastPos() const { return mnLastPos;} private: ScFlatUInt16RowSegments& mrSegs; |