summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-10 15:27:31 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-03-10 15:27:59 +0100
commit89331b3b4f3798d44ac8bfcf129b24ab8714a8dd (patch)
tree546dd7a98b6493d19c766caeee806fabb7360f42 /sc
parentecfe151546e3c0bcea71c949b9fa35a327d71969 (diff)
this method is now unused
Change-Id: I53f216836f1d8d8ff185c90ccdeda018bbb5dbe0
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/xml/XMLExportIterator.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/sc/source/filter/xml/XMLExportIterator.cxx b/sc/source/filter/xml/XMLExportIterator.cxx
index 1662db73621f..520ff51a015e 100644
--- a/sc/source/filter/xml/XMLExportIterator.cxx
+++ b/sc/source/filter/xml/XMLExportIterator.cxx
@@ -837,25 +837,6 @@ void ScMyNotEmptyCellsIterator::SkipTable(SCTAB nSkip)
pDetectiveOp->SkipTable(nSkip);
}
-namespace {
-
-bool IsNoteBeforeNextCell(const SCCOL nCol, const SCROW nRow, const table::CellAddress& rAddress)
-{
- if(nRow < rAddress.Row)
- return true;
- else if(nRow > rAddress.Row)
- return false;
- else
- {
- if(nCol < rAddress.Column)
- return true;
- else
- return false;
- }
-}
-
-}
-
bool ScMyNotEmptyCellsIterator::GetNext(ScMyCell& aCell, ScFormatRangeStyles* pCellStyles)
{
table::CellAddress aAddress( nCurrentTable, MAXCOL + 1, MAXROW + 1 );