diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-07-05 13:35:56 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-07-05 13:35:56 +0100 |
commit | 6cfa32e2ff651fb2678980a9fff149628379db93 (patch) | |
tree | ef5949149e8b85ab445fc0d2dc62e4903b3e39bd /sc/source/ui/view/tabvwshf.cxx | |
parent | 1f516ee88a8abebd8f36ce4c9ccf47c4e11de4ff (diff) |
yet more iterator->const_iterator
Diffstat (limited to 'sc/source/ui/view/tabvwshf.cxx')
-rw-r--r-- | sc/source/ui/view/tabvwshf.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/tabvwshf.cxx b/sc/source/ui/view/tabvwshf.cxx index 876b93c7e128..6b1ab39d1038 100644 --- a/sc/source/ui/view/tabvwshf.cxx +++ b/sc/source/ui/view/tabvwshf.cxx @@ -672,7 +672,7 @@ void ScTabViewShell::ExecuteTable( SfxRequest& rReq ) String aUndo = ScGlobal::GetRscString( STR_UNDO_TAB_RTL ); pUndoManager->EnterListAction( aUndo, aUndo ); - ScMarkData::iterator itr = rMark.begin(), itrEnd = rMark.end(); + ScMarkData::const_iterator itr = rMark.begin(), itrEnd = rMark.end(); for (; itr != itrEnd; ++itr) aFunc.SetLayoutRTL( *itr, bSet, false ); |