summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/interpr4.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/interpr4.cxx')
-rw-r--r--sc/source/core/tool/interpr4.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index 103d52864d17..1c64a8556ffb 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -106,30 +106,6 @@ void ScInterpreter::ReplaceCell( ScAddress& rPos )
}
}
-void ScInterpreter::ReplaceCell( SCCOL& rCol, SCROW& rRow, SCTAB& rTab )
-{
- ScAddress aCellPos( rCol, rRow, rTab );
- size_t ListSize = pDok->m_TableOpList.size();
- for ( size_t i = 0; i < ListSize; ++i )
- {
- ScInterpreterTableOpParams *const pTOp = pDok->m_TableOpList[ i ].get();
- if ( aCellPos == pTOp->aOld1 )
- {
- rCol = pTOp->aNew1.Col();
- rRow = pTOp->aNew1.Row();
- rTab = pTOp->aNew1.Tab();
- return ;
- }
- else if ( aCellPos == pTOp->aOld2 )
- {
- rCol = pTOp->aNew2.Col();
- rRow = pTOp->aNew2.Row();
- rTab = pTOp->aNew2.Tab();
- return ;
- }
- }
-}
-
bool ScInterpreter::IsTableOpInRange( const ScRange& rRange )
{
if ( rRange.aStart == rRange.aEnd )