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/Accessibility | |
parent | f6136ef422ae27f536629e128dff2bf34daa01d5 (diff) |
Removed ScRangeList::at() in favor of operator[].
Diffstat (limited to 'sc/source/ui/Accessibility')
-rw-r--r-- | sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx index 3b9ab105ce56..8fc350f439bb 100644 --- a/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx +++ b/sc/source/ui/Accessibility/AccessibleSpreadsheet.cxx @@ -766,7 +766,7 @@ void ScAccessibleSpreadsheet::CreateSortedMarkedCells() mpSortedMarkedCells->reserve(mpMarkedRanges->GetCellCount()); for ( size_t i = 0, ListSize = mpMarkedRanges->size(); i < ListSize; ++i ) { - ScRange* pRange = mpMarkedRanges->at( i ); + ScRange* pRange = (*mpMarkedRanges)[i]; if (pRange->aStart.Tab() != pRange->aEnd.Tab()) { if ((maActiveCell.Tab() >= pRange->aStart.Tab()) || |