summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-07-05 23:39:23 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-07-18 12:49:03 +0200
commit563fe60878c2ad3289c5bdcd7d8647aea4280129 (patch)
tree24c6191c4986fa094a0945d5555bd36dc56922ac /sc
parent480ac84f2f5049fb4337b36f12fd6796e005761b (diff)
Fix typos
Change-Id: I5195d13b351c0eebad1eae901f7ce8408a9e5c92 Reviewed-on: https://gerrit.libreoffice.org/57028 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/ui/vba/vbarange.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/ui/vba/vbarange.cxx b/sc/source/ui/vba/vbarange.cxx
index 120451ec7f83..4eceac5ed1b3 100644
--- a/sc/source/ui/vba/vbarange.cxx
+++ b/sc/source/ui/vba/vbarange.cxx
@@ -3928,15 +3928,15 @@ ScVbaRange::getRowHeight()
}
// if any row's RowHeight in the
- // range is different from any other then return NULL
+ // range is different from any other, then return NULL
RangeHelper thisRange( mxRange );
table::CellRangeAddress thisAddress = thisRange.getCellRangeAddressable()->getRangeAddress();
sal_Int32 nStartRow = thisAddress.StartRow;
sal_Int32 nEndRow = thisAddress.EndRow;
sal_uInt16 nRowTwips = 0;
- // #TODO probably possible to use the SfxItemSet ( and see if
- // SfxItemState::DONTCARE is set ) to improve performance
+ // #TODO probably possible to use the SfxItemSet (and see if
+ // SfxItemState::DONTCARE is set) to improve performance
// #CHECKME looks like this is general behaviour not just row Range specific
// if ( mbIsRows )
ScDocShell* pShell = getScDocShell();