summaryrefslogtreecommitdiff
path: root/sc/source/core/data/markmulti.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/markmulti.cxx')
-rw-r--r--sc/source/core/data/markmulti.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/markmulti.cxx b/sc/source/core/data/markmulti.cxx
index ea1eb5be17a9..04619862b689 100644
--- a/sc/source/core/data/markmulti.cxx
+++ b/sc/source/core/data/markmulti.cxx
@@ -256,7 +256,7 @@ void ScMultiSel::SetMarkArea( SCCOL nStartCol, SCCOL nEndCol, SCROW nStartRow, S
MapType::iterator aIter = aMultiSelContainer.end();
for ( SCCOL nColIter = nEndCol; nColIter >= nStartCol; --nColIter )
{
- // First hint is usually off, so the first emplace operation will take upto
+ // First hint is usually off, so the first emplace operation will take up to
// logarithmic in map size, all other iterations will take only constant time.
aIter = aMultiSelContainer.emplace_hint( aIter, nColIter, ScMarkArray() );
aIter->second.SetMarkArea( nStartRow, nEndRow, bMark );