commit edb6e363e20ae06060c9d7dd7076adf200e0a8df Author: Maryline Date: Sun Dec 19 18:38:23 2010 +0100 2 callcatchers diff --git a/sc/inc/segmenttree.hxx b/sc/inc/segmenttree.hxx index f3f202a..6bf0f68 100644 --- a/sc/inc/segmenttree.hxx +++ b/sc/inc/segmenttree.hxx @@ -108,12 +108,10 @@ public: void setTrue(SCCOL nCol1, SCCOL nCol2); void setFalse(SCCOL nCol1, SCCOL nCol2); - bool getValue(SCCOL nCol); bool getRangeData(SCCOL nCol, RangeData& rData); void removeSegment(SCCOL nCol1, SCCOL nCol2); void insertSegment(SCCOL nCol, SCCOL nSize, bool bSkipStartBoundary); - void enableTreeSearch(bool bEnable); void setInsertFromBack(bool bInsertFromBack); private: diff --git a/sc/source/core/data/segmenttree.cxx b/sc/source/core/data/segmenttree.cxx index b24ba26..ac7b28d 100644 --- a/sc/source/core/data/segmenttree.cxx +++ b/sc/source/core/data/segmenttree.cxx @@ -440,11 +440,6 @@ void ScFlatBoolColSegments::setFalse(SCCOL nCol1, SCCOL nCol2) mpImpl->setFalse(static_cast(nCol1), static_cast(nCol2)); } -bool ScFlatBoolColSegments::getValue(SCCOL nCol) -{ - return mpImpl->getValue(static_cast(nCol)); -} - bool ScFlatBoolColSegments::getRangeData(SCCOL nCol, RangeData& rData) { ScFlatBoolSegmentsImpl::RangeData aData; @@ -467,11 +462,6 @@ void ScFlatBoolColSegments::insertSegment(SCCOL nCol, SCCOL nSize, bool bSkipSta mpImpl->insertSegment(static_cast(nCol), static_cast(nSize), bSkipStartBoundary); } -void ScFlatBoolColSegments::enableTreeSearch(bool bEnable) -{ - mpImpl->enableTreeSearch(bEnable); -} - void ScFlatBoolColSegments::setInsertFromBack(bool bInsertFromBack) { mpImpl->setInsertFromBack(bInsertFromBack);