From 04a04dd7915f82186dd0ec5d277bbccb3b19d15f Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Mon, 25 Mar 2013 13:54:48 -0400 Subject: Remove a variant of constructor from ScCellIterator. It's redundant. Change-Id: I0aae329124453a5976b2a74f6290b100ce955a4e --- sc/source/ui/unoobj/cellsuno.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/ui/unoobj') diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 2ff086f2a87b..aa403d7ae677 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -3908,7 +3908,7 @@ uno::Reference SAL_CALL ScCellRangesBase::queryDependen SCTAB nTab = lcl_FirstTab(aNewRanges); //! alle Tabellen - ScCellIterator aCellIter( pDoc, 0,0, nTab, MAXCOL,MAXROW, nTab ); + ScCellIterator aCellIter( pDoc, ScRange(0, 0, nTab, MAXCOL, MAXROW, nTab) ); for (bool bHasCell = aCellIter.first(); bHasCell; bHasCell = aCellIter.next()) { if (aCellIter.getType() != CELLTYPE_FORMULA) -- cgit