[Libreoffice-commits] .: sc/inc sc/source
Kohei Yoshida
kohei at kemper.freedesktop.org
Mon Feb 14 22:05:28 PST 2011
sc/inc/segmenttree.hxx | 1 -
sc/source/core/data/segmenttree.cxx | 5 -----
2 files changed, 6 deletions(-)
New commits:
commit 96ba54de5f0224d7931ee98dcb0927906e009867
Author: Kohei Yoshida <kyoshida at novell.com>
Date: Tue Feb 15 01:05:14 2011 -0500
Unused method removal.
diff --git a/sc/inc/segmenttree.hxx b/sc/inc/segmenttree.hxx
index 6878ac5..494ed93 100644
--- a/sc/inc/segmenttree.hxx
+++ b/sc/inc/segmenttree.hxx
@@ -83,7 +83,6 @@ public:
void removeSegment(SCROW nRow1, SCROW nRow2);
void insertSegment(SCROW nRow, SCROW nSize, bool bSkipStartBoundary);
- void enableTreeSearch(bool bEnable);
SCROW findLastNotOf(bool bValue) const;
private:
diff --git a/sc/source/core/data/segmenttree.cxx b/sc/source/core/data/segmenttree.cxx
index fea1c1a..d7d1153 100644
--- a/sc/source/core/data/segmenttree.cxx
+++ b/sc/source/core/data/segmenttree.cxx
@@ -419,11 +419,6 @@ void ScFlatBoolRowSegments::insertSegment(SCROW nRow, SCROW nSize, bool bSkipSta
mpImpl->insertSegment(static_cast<SCCOLROW>(nRow), static_cast<SCCOLROW>(nSize), bSkipStartBoundary);
}
-void ScFlatBoolRowSegments::enableTreeSearch(bool bEnable)
-{
- mpImpl->enableTreeSearch(bEnable);
-}
-
SCROW ScFlatBoolRowSegments::findLastNotOf(bool bValue) const
{
return static_cast<SCROW>(mpImpl->findLastNotOf(bValue));
More information about the Libreoffice-commits
mailing list