diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 16:07:50 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-12-10 16:08:27 -0500 |
commit | 75c0b752865ac42b9c70c9588f995a86a0e62a22 (patch) | |
tree | e49689b021486a899914e05355553e9fecdcf4ba /sc/source/ui/view/viewfunc.cxx | |
parent | f6136ef422ae27f536629e128dff2bf34daa01d5 (diff) |
Removed ScRangeList::at() in favor of operator[].
Diffstat (limited to 'sc/source/ui/view/viewfunc.cxx')
-rw-r--r-- | sc/source/ui/view/viewfunc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/viewfunc.cxx b/sc/source/ui/view/viewfunc.cxx index 7473f86c057f..e5170b49c2ba 100644 --- a/sc/source/ui/view/viewfunc.cxx +++ b/sc/source/ui/view/viewfunc.cxx @@ -946,7 +946,7 @@ BYTE ScViewFunc::GetSelectionScriptType() size_t nCount = aRanges.size(); for ( size_t i=0; i < nCount; i++ ) { - ScRange aRange = *aRanges.at( i ); + ScRange aRange = *aRanges[i]; ScCellIterator aIter( pDoc, aRange ); ScBaseCell* pCell = aIter.GetFirst(); while ( pCell ) |