summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-03-22 12:20:11 +0200
committerNoel Grandin <noel@peralex.com>2016-03-23 09:13:13 +0200
commit28d53e1a5fe5c84f6dea9793e8cc819e58fee684 (patch)
tree4c352f056ece9d1d851d3fa78c60bb01e3d406cc /svx
parentf3d1ac75c4b7fa63022e54a9cbff46ba99535076 (diff)
loplugin:constantparm in svtools
Change-Id: I637efc68d02da527cf543d7e7bfbf51e5e70a1ad
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/celltypes.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/table/celltypes.hxx b/svx/source/table/celltypes.hxx
index 42114dd2d81d..0316620031a4 100644
--- a/svx/source/table/celltypes.hxx
+++ b/svx/source/table/celltypes.hxx
@@ -53,12 +53,12 @@ class RangeIterator
{
public:
/** creates an iterator from rStart (including) to rEnd (excluding) if
- bForeward is true or from nEnd (excluding to nStart (including).
+ bForward is true or from nEnd (excluding to nStart (including).
rStart must be <= rEnd.
*/
- RangeIterator( const T& rStart, const T& rEnd, bool bForeward = true )
+ RangeIterator( const T& rStart, const T& rEnd, bool bForward = true )
{
- if( bForeward )
+ if( bForward )
{
maIter = rStart;
maEnd = rEnd;