summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-06-19 11:54:12 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-06-24 16:51:34 -0400
commit3b0c069c9a157c4cd9ec5636c776115af6d9664f (patch)
tree66fd237536c1a535dba104f9f682bd30a2b96cfd
parentb6a6a26698cb56a194c7c99b0ad267e60e3a05d5 (diff)
Don't forget to return true if we are successful.
Else we'd never get out of this inifite loop.... Change-Id: I96e072eb79cce77302b27cad42da31f9a66c3401
-rw-r--r--sc/source/core/data/dociter.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/data/dociter.cxx b/sc/source/core/data/dociter.cxx
index 6827ef0f7e8e..f357fe38caf4 100644
--- a/sc/source/core/data/dociter.cxx
+++ b/sc/source/core/data/dociter.cxx
@@ -922,6 +922,7 @@ bool ScCellIterator::getCurrent()
}
maCurCell.assign(maCurColPos.first, maCurColPos.second);
+ return true;
}
return false;
}