callcatchers ScFlatBoolRowSegments

This commit is contained in:
Julien Nabet 2010-12-21 01:21:55 -05:00 committed by Kohei Yoshida
parent 47d786fbc9
commit f1bf645300
2 changed files with 0 additions and 13 deletions

View file

@ -84,9 +84,6 @@ public:
SCROW findLastNotOf(bool bValue) const;
void enableTreeSearch(bool bEnable);
void setInsertFromBack(bool bInsertFromBack);
private:
::std::auto_ptr<ScFlatBoolSegmentsImpl> mpImpl;
};

View file

@ -404,16 +404,6 @@ SCROW ScFlatBoolRowSegments::findLastNotOf(bool bValue) const
return static_cast<SCROW>(mpImpl->findLastNotOf(bValue));
}
void ScFlatBoolRowSegments::enableTreeSearch(bool bEnable)
{
mpImpl->enableTreeSearch(bEnable);
}
void ScFlatBoolRowSegments::setInsertFromBack(bool bInsertFromBack)
{
mpImpl->setInsertFromBack(bInsertFromBack);
}
// ============================================================================
ScFlatBoolColSegments::ScFlatBoolColSegments() :