[Libreoffice-commits] .: sc/inc sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Mon Feb 14 18:51:25 PST 2011
sc/inc/segmenttree.hxx | 3 ---
sc/source/core/data/segmenttree.cxx | 5 -----
2 files changed, 8 deletions(-)
New commits:
commit d63f9bf06428d559075e4e097eaf8a844a0b4ed4
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Mon Feb 14 21:51:17 2011 -0500
A little cleanup.
diff --git a/sc/inc/segmenttree.hxx b/sc/inc/segmenttree.hxx
index 353250e..3282398 100644
--- a/sc/inc/segmenttree.hxx
+++ b/sc/inc/segmenttree.hxx
@@ -83,7 +83,6 @@ public:
void insertSegment(SCROW nRow, SCROW nSize, bool bSkipStartBoundary);
void enableTreeSearch(bool bEnable);
- void setInsertFromBack(bool bInsertFromBack);
SCROW findLastNotOf(bool bValue) const;
private:
@@ -111,8 +110,6 @@ public:
void removeSegment(SCCOL nCol1, SCCOL nCol2);
void insertSegment(SCCOL nCol, SCCOL nSize, bool bSkipStartBoundary);
- void enableTreeSearch(bool bEnable);
-
private:
::std::auto_ptr<ScFlatBoolSegmentsImpl> mpImpl;
};
diff --git a/sc/source/core/data/segmenttree.cxx b/sc/source/core/data/segmenttree.cxx
index da584e3..fde7cba 100644
--- a/sc/source/core/data/segmenttree.cxx
+++ b/sc/source/core/data/segmenttree.cxx
@@ -465,11 +465,6 @@ void ScFlatBoolColSegments::insertSegment(SCCOL nCol, SCCOL nSize, bool bSkipSta
mpImpl->insertSegment(static_cast<SCCOLROW>(nCol), static_cast<SCCOLROW>(nSize), bSkipStartBoundary);
}
-void ScFlatBoolColSegments::enableTreeSearch(bool bEnable)
-{
- mpImpl->enableTreeSearch(bEnable);
-}
-
// ============================================================================
ScFlatUInt16RowSegments::ForwardIterator::ForwardIterator(ScFlatUInt16RowSegments& rSegs) :
More information about the Libreoffice-commits
mailing list