summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-03-05 21:20:27 +0100
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2018-03-06 09:42:04 +0100
commit240e67e37e1aaf459315e31a298bfb434fc1da8c (patch)
tree152d1e24fda813f407dfe9b90e90ce99e598d320 /sc
parent3e38b81a65ced47595e9760bdc622d9434b72cc0 (diff)
Fix typos
Change-Id: I005023337dbe593e0ac1d76f7b10848d24f314a5 Reviewed-on: https://gerrit.libreoffice.org/50785 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/unoobj/cellsuno.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx
index a22b16ee5467..dad666ff6b02 100644
--- a/sc/source/ui/unoobj/cellsuno.cxx
+++ b/sc/source/ui/unoobj/cellsuno.cxx
@@ -2535,7 +2535,7 @@ void ScCellRangesBase::GetOnePropertyValue( const SfxItemPropertySimpleEntry* pE
case SC_WID_UNO_TBLBORD:
case SC_WID_UNO_TBLBORD2:
{
- //! loop throgh all ranges
+ //! loop through all ranges
if ( !aRanges.empty() )
{
const ScRange* pFirst = aRanges[ 0 ];
@@ -3439,7 +3439,7 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryVisibleC
while (nCol <= MAXCOL)
{
if (rDoc.ColHidden(nCol, nTab, nullptr, &nLastCol))
- // hidden columns. Unselect them.
+ // hidden columns. Deselect them.
aMarkData.SetMultiMarkArea(ScRange(nCol, 0, nTab, nLastCol, MAXROW, nTab), false);
nCol = nLastCol + 1;
@@ -3449,7 +3449,7 @@ uno::Reference<sheet::XSheetCellRanges> SAL_CALL ScCellRangesBase::queryVisibleC
while (nRow <= MAXROW)
{
if (rDoc.RowHidden(nRow, nTab, nullptr, &nLastRow))
- // These rows are hidden. Unselect them.
+ // These rows are hidden. Deselect them.
aMarkData.SetMultiMarkArea(ScRange(0, nRow, nTab, MAXCOL, nLastRow, nTab), false);
nRow = nLastRow + 1;