[Libreoffice-commits] core.git: sc/source
Markus Mohrhard
markus.mohrhard at googlemail.com
Sun Mar 10 08:30:55 PDT 2013
sc/source/filter/xml/XMLExportIterator.cxx | 19 -------------------
1 file changed, 19 deletions(-)
New commits:
commit 89331b3b4f3798d44ac8bfcf129b24ab8714a8dd
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date: Sun Mar 10 15:27:31 2013 +0100
this method is now unused
Change-Id: I53f216836f1d8d8ff185c90ccdeda018bbb5dbe0
diff --git a/sc/source/filter/xml/XMLExportIterator.cxx b/sc/source/filter/xml/XMLExportIterator.cxx
index 1662db7..520ff51 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 );
More information about the Libreoffice-commits
mailing list