summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/address.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/tool/address.cxx')
-rw-r--r--sc/source/core/tool/address.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx
index 0c715ff84806..1020a8a47cc3 100644
--- a/sc/source/core/tool/address.cxx
+++ b/sc/source/core/tool/address.cxx
@@ -2442,7 +2442,7 @@ void ScRange::IncEndColSticky( SCCOL nDelta )
if (nCol < MAXCOL)
aEnd.SetCol( ::std::min( static_cast<SCCOL>(nCol + nDelta), MAXCOL));
else
- aEnd.IncCol( nDelta); // was greater than MAXCOL, caller should know..
+ aEnd.IncCol( nDelta); // was greater than MAXCOL, caller should know...
}
void ScRange::IncEndRowSticky( SCROW nDelta )
@@ -2462,7 +2462,7 @@ void ScRange::IncEndRowSticky( SCROW nDelta )
if (nRow < MAXROW)
aEnd.SetRow( ::std::min( static_cast<SCROW>(nRow + nDelta), MAXROW));
else
- aEnd.IncRow( nDelta); // was greater than MAXROW, caller should know..
+ aEnd.IncRow( nDelta); // was greater than MAXROW, caller should know...
}
OUString ScAddress::GetColRowString() const