diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/table/celltypes.hxx | 6 |
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; |