summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-26 12:14:06 +0200
committerNoel Grandin <noel@peralex.com>2014-02-27 10:27:32 +0200
commit297c4d4021c2818cb8a51fabfc074d172927f897 (patch)
tree10c7f5f3693d4ff5ec4f216c8d827c85de708ed7 /sc
parent778e685b6dd6694e83de047f8f72548d232c4b4b (diff)
remove unused code ScDBQueryDataIterator::DataAccessInternal::setPos
Change-Id: If59f5b99a792ff5eafc0e027a84ca07b89a86c81
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/dociter.hxx1
-rw-r--r--sc/source/core/data/dociter.cxx7
2 files changed, 0 insertions, 8 deletions
diff --git a/sc/inc/dociter.hxx b/sc/inc/dociter.hxx
index a777d4450ea1..0a8ef91760da 100644
--- a/sc/inc/dociter.hxx
+++ b/sc/inc/dociter.hxx
@@ -138,7 +138,6 @@ private:
private:
void incBlock();
void incPos();
- void setPos(size_t nPos);
const sc::CellStoreType* mpCells;
PositionType maCurPos;
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 35eb8d572405..0b3daef7a7f4 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -530,13 +530,6 @@ void ScDBQueryDataIterator::DataAccessInternal::incPos()
incBlock();
}
-void ScDBQueryDataIterator::DataAccessInternal::setPos(size_t nPos)
-{
- maCurPos = mpCells->position(maCurPos.first, nPos);
- nRow = nPos;
-}
-
-
ScDBQueryDataIterator::DataAccessMatrix::DataAccessMatrix(const ScDBQueryDataIterator* pParent, ScDBQueryParamMatrix* pParam) :
DataAccess(pParent),