summaryrefslogtreecommitdiffstats
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-26 22:24:07 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-27 00:07:17 -0400
commit6a2a132661ae2ae535a7259c802d31c817717bd3 (patch)
tree8f7c8740b5022366b436e57e25bcfaab8e7c2b98 /sc
parentScRefCellValue is actually a struct, not a class. (diff)
downloadcore-6a2a132661ae2ae535a7259c802d31c817717bd3.tar.gz
core-6a2a132661ae2ae535a7259c802d31c817717bd3.zip
Remove this hack.
Change-Id: Ibaf4f478c25e5c8b429ffb45a70d9a8a170053ef
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/dociter.hxx3
-rw-r--r--sc/source/core/data/dociter.cxx5
2 files changed, 0 insertions, 8 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx
index 7161ac29711f..4477ba37ac44 100644
--- a/sc/inc/dociter.hxx
+++ b/sc/inc/dociter.hxx
@@ -249,9 +249,6 @@ public:
bool first();
bool next();
-
- // TODO: Remove this later.
- ScBaseCell* getHackedBaseCell();
};
class ScQueryCellIterator // walk through all non-empty cells in an area
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index dadf5016365a..f64837ec9d96 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -1164,11 +1164,6 @@ bool ScCellIterator::next()
return getCurrent();
}
-ScBaseCell* ScCellIterator::getHackedBaseCell()
-{
- return mpDoc->GetCell(maCurPos);
-}
-
//-------------------------------------------------------------------------------
ScQueryCellIterator::ScQueryCellIterator(ScDocument* pDocument, SCTAB nTable,