summaryrefslogtreecommitdiff
path: root/sc/source/ui/docshell/editable.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-05 13:35:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-05 13:35:56 +0100
commit6cfa32e2ff651fb2678980a9fff149628379db93 (patch)
treeef5949149e8b85ab445fc0d2dc62e4903b3e39bd /sc/source/ui/docshell/editable.cxx
parent1f516ee88a8abebd8f36ce4c9ccf47c4e11de4ff (diff)
yet more iterator->const_iterator
Diffstat (limited to 'sc/source/ui/docshell/editable.cxx')
-rw-r--r--sc/source/ui/docshell/editable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/editable.cxx b/sc/source/ui/docshell/editable.cxx
index daae0c5abdc8..ca4492b2ce15 100644
--- a/sc/source/ui/docshell/editable.cxx
+++ b/sc/source/ui/docshell/editable.cxx
@@ -104,7 +104,7 @@ void ScEditableTester::TestSelectedBlock( ScDocument* pDoc,
const ScMarkData& rMark )
{
SCTAB nTabCount = pDoc->GetTableCount();
- ScMarkData::iterator itr = rMark.begin(), itrEnd = rMark.end();
+ ScMarkData::const_iterator itr = rMark.begin(), itrEnd = rMark.end();
for (; itr != itrEnd && *itr < nTabCount; ++itr)
TestBlock( pDoc, *itr, nStartCol, nStartRow, nEndCol, nEndRow );
}