[Libreoffice-commits] core.git: Branch 'feature/formula-core-rework' - sc/source
Kohei Yoshida
kohei.yoshida at gmail.com
Wed Jun 19 08:52:04 PDT 2013
sc/source/core/data/dociter.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit f1d92cb02d801bbac413f9027d8d5a4ffe98c07b
Author: Kohei Yoshida <kohei.yoshida at gmail.com>
Date: Wed Jun 19 11:54:12 2013 -0400
Don't forget to return true if we are successful.
Else we'd never get out of this inifite loop....
Change-Id: I96e072eb79cce77302b27cad42da31f9a66c3401
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index ab0035f..7479097 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -936,6 +936,7 @@ bool ScCellIterator::getCurrent()
}
maCurCell.assign(maCurColPos.first, maCurColPos.second);
+ return true;
}
return false;
}
More information about the Libreoffice-commits
mailing list